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

Unified Diff: LayoutTests/http/tests/xmlhttprequest/logout.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/logout.html
diff --git a/LayoutTests/http/tests/xmlhttprequest/logout.html b/LayoutTests/http/tests/xmlhttprequest/logout.html
index 82e187a0d2ce7f6372789d7997cfd56a08ee114b..e20b3d79a3f3a703966f1e1ebe4788cafb2cc08c 100644
--- a/LayoutTests/http/tests/xmlhttprequest/logout.html
+++ b/LayoutTests/http/tests/xmlhttprequest/logout.html
@@ -41,7 +41,7 @@ document.getElementById("login").innerHTML = isAuthenticated() ? "PASS" : "FAIL"
// Test that a request sent before logout actually has credentials.
var r = new XMLHttpRequest;
-r.open("GET", "resources/logout/resource.php?isAuthenticated", true);
+r.open("GET", "resources/logout/resource.php?isAuthenticated2", true);
r.onload = function() {
document.getElementById("async").innerHTML = r.status == 200 ? "PASS" : "FAIL";

Powered by Google App Engine
This is Rietveld 408576698