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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/send-on-abort.html

Issue 2741513002: [Merge M-57] Add a warning for the deprecation of content-initiated data URL navigations (Closed)
Patch Set: Created 3 years, 9 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/http/tests/xmlhttprequest/send-on-abort.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/send-on-abort.html b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/send-on-abort.html
index 611f24e6fd61fc4bb3bb32c60e7fd300631b3bde..be89584c9db5142b77d234e1c8862c27daa74cc4 100644
--- a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/send-on-abort.html
+++ b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/send-on-abort.html
@@ -22,7 +22,7 @@ function onreadystatechangeHandler()
xhr = new XMLHttpRequest;
xhr.onabort = abortHandler;
xhr.onreadystatechange = onreadystatechangeHandler;
-xhr.open("GET", "foo.txt", true);
+xhr.open("GET", "foo.txt", true);
xhr.send(null);
-location.href = "data:text/html,PASS: No assertion failure.<script>if (window.testRunner) testRunner.notifyDone()</scr" + "ipt>";
+location.href = "../misc/resources/notify-success.html";
</script>

Powered by Google App Engine
This is Rietveld 408576698