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

Unified Diff: LayoutTests/http/tests/appcache/resources/remove-cache-frame-2.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/appcache/resources/remove-cache-frame-2.html
diff --git a/LayoutTests/http/tests/appcache/resources/remove-cache-frame-2.html b/LayoutTests/http/tests/appcache/resources/remove-cache-frame-2.html
index 009a8b60eae4e6409f05929effedbb1f2e5de06b..5d26f1cac3cff6c2316993ebde00676a5e7cb159 100644
--- a/LayoutTests/http/tests/appcache/resources/remove-cache-frame-2.html
+++ b/LayoutTests/http/tests/appcache/resources/remove-cache-frame-2.html
@@ -17,6 +17,7 @@ function test()
try {
var req = new XMLHttpRequest;
req.open("GET", "empty.txt", false);
+ req.setRequestHeader("Cache-control", "no-store");
req.send(null);
alert("FAIL: XMLHttpRequest for an uncached resource didn't raise an exception");
} catch (ex) {

Powered by Google App Engine
This is Rietveld 408576698