summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/offline/application-cache-api/api_status_uncached.html
blob: 300c4a1b182b6e4a05a16a68813a421077c14ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE HTML>
<html>
  <head>
    <title>Offline Application Cache - API_status_UNCACHED</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
  </head>
  <body>
    <div id="log"></div>

    <script>
      var cache = window.applicationCache;

      test(function(){
        assert_equals(cache.status, cache.UNCACHED, "uncached status test");
      });
    </script>
  </body>
</html>