Skip to content

Commit fb6d5a6

Browse files
committed
replacement is an encoding label now
See whatwg/encoding#117 for the corresponding Encoding Standard change.
1 parent e63fd9b commit fb6d5a6

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

encoding/api-invalid-label.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
var tests = ["invalid-invalidLabel"];
99
setup(function() {
1010
encodings_table.forEach(function(section) {
11-
section.encodings.filter(function(encoding) {
12-
return encoding.name !== 'replacement';
13-
}).forEach(function(encoding) {
11+
section.encodings.forEach(function(encoding) {
1412
encoding.labels.forEach(function(label) {
1513
["\u0000", "\u000b", "\u00a0", "\u2028", "\u2029"].forEach(function(ws) {
1614
tests.push(ws + label);

encoding/api-replacement-encodings.html

-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55
<script src="resources/encodings.js"></script>
66
<script>
77

8-
test(function() {
9-
assert_throws(new RangeError(), function() { new TextDecoder('replacement'); });
10-
}, 'The "replacement" label should not be a known encoding.');
11-
128
encodings_table.forEach(function(section) {
139
section.encodings.filter(function(encoding) {
1410
return encoding.name === 'replacement';

encoding/resources/encodings.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,8 @@ var encodings_table =
431431
"hz-gb-2312",
432432
"iso-2022-cn",
433433
"iso-2022-cn-ext",
434-
"iso-2022-kr"
434+
"iso-2022-kr",
435+
"replacement"
435436
],
436437
"name": "replacement"
437438
},

0 commit comments

Comments
 (0)