summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/offline/application-cache-api/api_status_checking-manual.html
blob: a4a3b41a7d54669dd9a8f69f2031cf7279bff7bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html manifest="../resources/manifest/clock.manifest">
  <head>
    <title>Offline Application Cache - API_status_CHECKING</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <ol>
      <li>Refresh the page.</li>
    </ol>

    <div id="log"></div>
    <script>
      var t = async_test("checking status test"),
          cache = window.applicationCache;

      cache.onchecking = t.step_func_done(function() {
        assert_equals(cache.status, cache.CHECKING, "cache.status should equals cache.CHECKING");
      });
    </script>
  </body>
</html>