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

Unified Diff: LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html

Issue 23702040: Send synchronous loads through the cache. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address comments 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
Index: LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html
diff --git a/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html b/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html
index c572d2f4e31ec0a614c6c753337e38cc03a232bd..fc74997db4a309ae16b05b8ab9e5851b4eaa260c 100644
--- a/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html
+++ b/LayoutTests/http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html
@@ -21,7 +21,7 @@ if (window.XMLHttpRequest) {
xhr.open("GET", "resources/1251.html", false);
xhr.onreadystatechange = function () {
try {
- xhr.open("GET", "resources/1251.html", true);
+ xhr.open("GET", "resources/1251.html?", true);
xhr.send(null);
} catch (ex) {
}

Powered by Google App Engine
This is Rietveld 408576698