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

Unified Diff: LayoutTests/http/tests/appcache/resources/remove-cache-frame.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.html
diff --git a/LayoutTests/http/tests/appcache/resources/remove-cache-frame.html b/LayoutTests/http/tests/appcache/resources/remove-cache-frame.html
index 30e85535da61f2765ecf1bc5056472184206b71f..9ce432428d3e486eb6852b93708f228d1aab53cd 100644
--- a/LayoutTests/http/tests/appcache/resources/remove-cache-frame.html
+++ b/LayoutTests/http/tests/appcache/resources/remove-cache-frame.html
@@ -20,6 +20,7 @@ function onObsolete()
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