| 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>
|
|
|