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

Unified Diff: content/test/data/appcache/simple_page_with_manifest.html

Issue 2991443002: The Appcache subresource URL factory needs to inform the URLLoaderClient if there is a failure. (Closed)
Patch Set: Disable the test for Android Created 3 years, 5 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
« no previous file with comments | « content/test/data/appcache/simple_page_no_manifest.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/appcache/simple_page_with_manifest.html
diff --git a/content/test/data/appcache/simple_page_with_manifest.html b/content/test/data/appcache/simple_page_with_manifest.html
new file mode 100644
index 0000000000000000000000000000000000000000..d94228422f28f45347168cbe59ec4b6bf258a6ae
--- /dev/null
+++ b/content/test/data/appcache/simple_page_with_manifest.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html manifest="simple_page.manifest">
+<head>
+ <title>OK</title>
+ <script type="text/javascript">
+ function onCachedEvent() {
+ window.document.title = "AppCache updated";
+ }
+
+ function onLoad() {
+ window.applicationCache.addEventListener('cached', onCachedEvent, false);
+ }
+ </script>
+</head>
+
+<body onload="onLoad()">
+ <p><img src="logo.png" width="336" height="69" /></p>
+ Basic AppCache test. The manifest for this page is specified in the
+ simple_page.manifest file. The title of the page is set to AppCache updated
+ if the cache is successfully updated.
+</body>
+</html>
« no previous file with comments | « content/test/data/appcache/simple_page_no_manifest.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698