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

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

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 function expect_exception(func) {
2 try {
3 func();
4 } catch (ex) {
5 return;
6 }
7 throw Error("No exception seen");
8 }
9
10 expect_exception(_ => webkitRequestFileSystem(TEMPORARY, 1024));
11 expect_exception(_ => webkitRequestFileSystemSync(TEMPORARY, 1024));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698