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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/no-filesystem.html

Issue 1667213002: Don't expose nonstandard FileSystem API to Service Workers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@work-bind
Patch Set: virtual/stable rebaselines Created 4 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 <!DOCTYPE html>
2 <title>Service Worker: File System API is not exposed (and doesn't crash)</title >
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="../resources/test-helpers.js"></script>
6 <script>
7 promise_test(function(t) {
8 var scope = 'resources/blank.html'
9 return service_worker_unregister_and_register(
10 t, 'resources/no-filesystem.js', scope)
11 .then(function(registration) {
12 return wait_for_state(t, registration.installing, 'activated');
13 })
14 .then(function() {
15 return service_worker_unregister_and_done(t, scope);
16 });
17 });
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698