Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/stub-4.6-cache-objects.html

Issue 2415873002: Import w3c tests for the service workers (Closed)
Patch Set: Rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <title>Service Workers: Caches</title>
4 <head>
5 <link rel="help" href="https://w3c.github.io/ServiceWorker/#cache-object s">
6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8
9 </head>
10 <body>
11
12 <!--
13
14 To allow authors to fully manage their content caches for offline use, the
15 `[ServiceWorkerGlobalScope][1]` execution context provides the caching methods
16 largely conforming to [ECMAScript 6 Map objects][2] with additional convenience
17 methods. A domain can have multiple, named `[Cache][3]` objects, whose contents
18 are entirely under the control of scripts. Caches are not shared across
19 domains, and they are completely isolated from the browser's HTTP cache.
20
21 [1]: #service-worker-global-scope-interface
22 [2]: http://goo.gl/gNnDPO
23 [3]: #cache-interface
24
25 -->
26
27
28
29 <script>
30 test(function() {
31 // not_implemented();
32 }, "There are no tests for section Caches so far.");
33 </script>
34
35 </body>
36 </html>
37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698