diff options
Diffstat (limited to 'testing/web-platform/tests/html/browsers/offline/introduction-4/event_progress.html')
-rw-r--r-- | testing/web-platform/tests/html/browsers/offline/introduction-4/event_progress.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/browsers/offline/introduction-4/event_progress.html b/testing/web-platform/tests/html/browsers/offline/introduction-4/event_progress.html new file mode 100644 index 000000000..a808db757 --- /dev/null +++ b/testing/web-platform/tests/html/browsers/offline/introduction-4/event_progress.html @@ -0,0 +1,18 @@ +<!DOCTYPE HTML> +<html manifest="../resources/manifest/clock.manifest"> + <head> + <title>Offline Application Cache - Event_progress</title> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + </head> + <body> + <div id="log"></div> + + <script> + var t = async_test("progress event test"); + var cache = window.applicationCache; + + cache.onprogress = t.done(); + </script> + </body> +</html> |