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

Unified Diff: LayoutTests/http/tests/inspector/network/network-cyrillic-xhr.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/inspector/network/network-cyrillic-xhr.html
diff --git a/LayoutTests/http/tests/inspector/network/network-cyrillic-xhr.html b/LayoutTests/http/tests/inspector/network/network-cyrillic-xhr.html
index 99674648888d0d13c37e922a4d9ddbcfaceb7c1b..afa4788ee752e702ddc46f6a6aea9d04c0b170d8 100644
--- a/LayoutTests/http/tests/inspector/network/network-cyrillic-xhr.html
+++ b/LayoutTests/http/tests/inspector/network/network-cyrillic-xhr.html
@@ -26,11 +26,11 @@ function test()
function step1()
{
- InspectorTest.makeSimpleXHR("GET", "resources/cyrillic.html", false, firstXHRLoaded);
+ InspectorTest.makeSimpleXHR("GET", "resources/cyrillic.html?sync", false, firstXHRLoaded);
function firstXHRLoaded()
{
- InspectorTest.makeSimpleXHR("GET", "resources/cyrillic.html", true, step2);
+ InspectorTest.makeSimpleXHR("GET", "resources/cyrillic.html?async", true, step2);
}
}

Powered by Google App Engine
This is Rietveld 408576698