| Index: LayoutTests/imported/web-platform-tests/html/browsers/offline/application-cache-api/api_status_uncached.html
|
| diff --git a/LayoutTests/imported/web-platform-tests/html/browsers/offline/application-cache-api/api_status_uncached.html b/LayoutTests/imported/web-platform-tests/html/browsers/offline/application-cache-api/api_status_uncached.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8473bd60d9b279f5bbf09fc3900b73e608c0426a
|
| --- /dev/null
|
| +++ b/LayoutTests/imported/web-platform-tests/html/browsers/offline/application-cache-api/api_status_uncached.html
|
| @@ -0,0 +1,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>
|
|
|