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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/html/browsers/offline/no-appcache-in-shared-workers-historical.html

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 9 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 <meta charset="utf-8">
3 <title>AppCache should not exist in shared workers, even though it was specced a t some point</title>
4 <link rel="help" href="https://github.com/whatwg/html/pull/2384">
5 <link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
6
7 <script src="/resources/testharness.js"></script>
8 <script src="/resources/testharnessreport.js"></script>
9
10 <script>
11 "use strict";
12
13 if (typeof SharedWorker === "undefined") {
14 test(() => {
15 }, "This browser doesn't implement SharedWorker, and so passes this test autom atically");
16 } else {
17 fetch_tests_from_worker(new SharedWorker("no-appcache-in-shared-workers-histor ical.js"));
18 }
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698