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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html manifest="simple_page.manifest">
3 <head>
4 <title>OK</title>
5 <script type="text/javascript">
6 function onCachedEvent() {
7 window.document.title = "AppCache updated";
8 }
9
10 function onLoad() {
11 window.applicationCache.addEventListener('cached', onCachedEvent, false);
12 }
13 </script>
14 </head>
15
16 <body onload="onLoad()">
17 <p><img src="logo.png" width="336" height="69" /></p>
18 Basic AppCache test. The manifest for this page is specified in the
19 simple_page.manifest file. The title of the page is set to AppCache updated
20 if the cache is successfully updated.
21 </body>
22 </html>
OLDNEW
« 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