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

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

Issue 2711183003: Import wpt@a7e9c2abcf65b78fcf1c246fec6681c74e1bc352 (Closed)
Patch Set: Update test expectations and baselines. Created 3 years, 10 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 "use strict";
2 self.importScripts('/resources/testharness.js');
3
4 test(() => {
5 assert_equals(self.applicationCache, undefined, "self.applicationCache must be undefined");
6 assert_false("applicationCache" in self, "applicationCache must not even be a property of self");
7 }, "self.applicationCache must not exist");
8
9 test(() => {
10 assert_equals(self.ApplicationCache, undefined, "self.ApplicationCache must be undefined");
11 assert_false("ApplicationCache" in self, "ApplicationCache must not even be a property of self");
12 }, "ApplicationCache must not be exposed");
13
14 done();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698