summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/offline/introduction-4/event_noupdate.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/html/browsers/offline/introduction-4/event_noupdate.html')
-rw-r--r--testing/web-platform/tests/html/browsers/offline/introduction-4/event_noupdate.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/browsers/offline/introduction-4/event_noupdate.html b/testing/web-platform/tests/html/browsers/offline/introduction-4/event_noupdate.html
new file mode 100644
index 000000000..1e4dd89cf
--- /dev/null
+++ b/testing/web-platform/tests/html/browsers/offline/introduction-4/event_noupdate.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
+<html manifest="../resources/manifest/clock.manifest">
+ <head>
+ <title>Offline Application Cache - Event_noupdate</title>
+ <script src="/resources/testharness.js"></script>
+ <script src="/resources/testharnessreport.js"></script>
+ </head>
+ <body>
+ <div id="log"></div>
+
+ <script>
+ var t = async_test("noupdate event test");
+ var cache = window.applicationCache;
+
+ cache.onnoupdate = t.done();
+ </script>
+
+ </body>
+</html>