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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/encoding/api-invalid-label.html

Issue 1899623002: Import latest web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: handle new failures Created 4 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: third_party/WebKit/LayoutTests/imported/web-platform-tests/encoding/api-invalid-label.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/encoding/api-invalid-label.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/encoding/api-invalid-label.html
index e90c1fd54f94bfdabe127381c773e4bbc3086dc2..5ed71f1e4f46732bc6aa0be88f4164291a230703 100644
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/encoding/api-invalid-label.html
+++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/encoding/api-invalid-label.html
@@ -24,10 +24,6 @@ setup(function() {
tests.forEach(function(input) {
test(function() {
- assert_throws(new RangeError(), function() { new TextEncoder(input); });
- }, 'Invalid label ' + format_value(input) + ' should be rejected by TextEncoder.');
-
- test(function() {
assert_throws(new RangeError(), function() { new TextDecoder(input); });
}, 'Invalid label ' + format_value(input) + ' should be rejected by TextDecoder.');
});

Powered by Google App Engine
This is Rietveld 408576698