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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/filesystem/resources/null-arguments-worker.js

Issue 2537193003: Make fast/filesystem/cross-filesystem-op.html insensitive to test order (Closed)
Patch Set: use template string rather than concatenation Created 4 years 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/filesystem/null-arguments.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 importScripts('../resources/fs-worker-common.js'); 1 importScripts('../resources/fs-worker-common.js');
2 importScripts('../../../resources/js-test.js'); 2 importScripts('../../../resources/js-test.js');
3 importScripts('../resources/fs-test-util.js'); 3 importScripts('../resources/fs-test-util.js');
4 4
5 description('This test tries calling various sync filesystem functions with null arguments.'); 5 description('This test tries calling various sync filesystem functions with null arguments.');
6 6
7 fileSystem = webkitRequestFileSystemSync(self.TEMPORARY, 100); 7 fileSystem = webkitRequestFileSystemSync(self.TEMPORARY, 100);
8 8
9 shouldThrow("fileSystem.root.moveTo(null, 'x')"); 9 shouldThrow("fileSystem.root.moveTo(null, 'x')");
10 shouldThrow("fileSystem.root.copyTo(null, 'x')"); 10 shouldThrow("fileSystem.root.copyTo(null, 'x')");
11 entry = fileSystem.root.getFile("/test", { create: true }); 11 entry = fileSystem.root.getFile("/test", { create: true });
12 writer = entry.createWriter(); 12 writer = entry.createWriter();
13 shouldThrow("writer.write(null)"); 13 shouldThrow("writer.write(null)");
14 entry.remove();
14 finishJSTest(); 15 finishJSTest();
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/filesystem/null-arguments.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698