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

Unified Diff: third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
diff --git a/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html b/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
index 874efea80ecc2cdc0aa6b5b0b78a8e7fb6fd91b9..2bb5c69e14644b588b19da0a7a6eced022c4c5be 100644
--- a/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
+++ b/third_party/WebKit/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
@@ -10,7 +10,7 @@ var xhr = new XMLHttpRequest();
xhr.open('GET', 'resources/plist.app', true);
// Setting valid type does change the responseType value.
-["", "arraybuffer", "blob", "document", "json", "text", "legacystream"].forEach(function(type) {
+["", "arraybuffer", "blob", "document", "json", "text"].forEach(function(type) {
xhr.responseType = type;
shouldBeEqualToString('xhr.responseType', type);
});

Powered by Google App Engine
This is Rietveld 408576698