forked from mirrors/gecko-dev
Automatic update from web-platform-tests Encoding: Deflake some web platform tests via sharding encoding/api-invalid-label.any.js had 3287 subtests encoding/textdecoder-fatal-single-byte.any.js had 7169 subtests Pragmatically, the encoding tests need to sharded down to 1000 or they flakily timeout (e.g. on win debug and MSAN bots). Apply that here, and update expectations. Bug: 862938, 517704 Change-Id: I1b1bd13dd997700791ec25de9d0c75c1e5f72960 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2045144 Reviewed-by: Jarryd Goodman <jarrydg@chromium.org> Commit-Queue: Joshua Bell <jsbell@chromium.org> Cr-Commit-Position: refs/heads/master@{#740359} -- wpt-commits: 0d81ea137c1b1ff50f188807023e9355f9f38989 wpt-pr: 21677
29 lines
914 B
JavaScript
29 lines
914 B
JavaScript
// META: title=Encoding API: invalid label
|
|
// META: timeout=long
|
|
// META: variant=?1-1000
|
|
// META: variant=?1001-2000
|
|
// META: variant=?2001-3000
|
|
// META: variant=?3001-last
|
|
// META: script=resources/encodings.js
|
|
// META: script=/common/subset-tests.js
|
|
|
|
var tests = ["invalid-invalidLabel"];
|
|
setup(function() {
|
|
encodings_table.forEach(function(section) {
|
|
section.encodings.forEach(function(encoding) {
|
|
encoding.labels.forEach(function(label) {
|
|
["\u0000", "\u000b", "\u00a0", "\u2028", "\u2029"].forEach(function(ws) {
|
|
tests.push(ws + label);
|
|
tests.push(label + ws);
|
|
tests.push(ws + label + ws);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
tests.forEach(function(input) {
|
|
subsetTest(test, function() {
|
|
assert_throws_js(RangeError, function() { new TextDecoder(input); });
|
|
}, 'Invalid label ' + format_value(input) + ' should be rejected by TextDecoder.');
|
|
});
|