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

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

Issue 18883002: Add Streams API support to XMLHttpRequest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: kinuko's comment Created 7 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
diff --git a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
index c832ea95d9b74c97c0f4aa43caf4c1ca3fbb5b5e..95ed2a1b86faa62dfe567f4d15889163d4f100e1 100644
--- a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype.html
+++ b/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"].forEach(function(type) {
+["", "arraybuffer", "blob", "document", "json", "text", "stream"].forEach(function(type) {
xhr.responseType = type;
shouldBeEqualToString('xhr.responseType', type);
});
« no previous file with comments | « no previous file | LayoutTests/fast/xmlhttprequest/xmlhttprequest-set-responsetype-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698