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 a809ff3fb73647d68c6663f0975739848f1f6d5e..c20b99b92bb9a38ab0e6b22e38325a5a32d53b50 100644 |
--- a/LayoutTests/fast/encoding/api/encoding-labels.html |
+++ b/LayoutTests/fast/encoding/api/encoding-labels.html |
@@ -6,7 +6,9 @@ |
<script> |
encodings_table.forEach(function(section) { |
- section.encodings.forEach(function(encoding) { |
+ section.encodings.filter(function(encoding) { |
+ return encoding.name !== 'replacement'; |
+ }).forEach(function(encoding) { |
var name = encoding.name; |
test(function(){ |
encoding.labels.forEach(function(label) { |