Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: LayoutTests/fast/encoding/api/encoding-labels.html

Issue 269593009: Encoding API: Update tests and simplify constructors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {
« no previous file with comments | « LayoutTests/fast/encoding/api/ascii-supersets-expected.txt ('k') | LayoutTests/fast/encoding/api/encoding-labels-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698