Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / filesystem / resources / simple-temporary-sync.js
bloba630ea9eaa98a136451b49380e6628f253f5f165
1 if (this.importScripts) {
2 importScripts('../resources/fs-worker-common.js');
3 importScripts('../../../resources/js-test.js');
4 importScripts('../resources/fs-test-util.js');
7 description("requestFileSystemSync TEMPORARY test.");
9 var fileSystem = webkitRequestFileSystemSync(TEMPORARY, 100);
11 debug("Successfully obtained TEMPORARY FileSystem:" + fileSystem.name);
12 shouldBeTrue("fileSystem.name.length > 0");
13 shouldBe("fileSystem.root.fullPath", '"/"');
14 finishJSTest();