Index: LayoutTests/fast/encoding/api/encoding-labels.html |
diff --git a/LayoutTests/fast/encoding/api/encoding-labels.html b/LayoutTests/fast/encoding/api/encoding-labels.html |
index 1958e97902927bb90c2abecd1e44817a05b974ad..5dd30c1326c902dd9942bd2047b93d82d4cb05f4 100644 |
--- a/LayoutTests/fast/encoding/api/encoding-labels.html |
+++ b/LayoutTests/fast/encoding/api/encoding-labels.html |
@@ -7,7 +7,9 @@ description("Test the Encoding API's use of encoding names"); |
encodings_table.forEach(function(section) { |
var list = section.encodings; |
- list.forEach(function(encoding) { |
+ list.filter(function(encoding) { |
+ return encoding.name !== 'replacement'; |
+ }).forEach(function(encoding) { |
debug(""); |
evalAndLog("name = " + JSON.stringify(encoding.name)); |
encoding.labels.forEach(function(label) { |