blob: 6bf44425fbb8c28a5e71d09edd3ee381ea943bd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if (this.importScripts) {
importScripts('../resources/fs-worker-common.js');
importScripts('../resources/fs-test-util.js');
}
description("requestFileSystemSync TEMPORARY test.");
var fileSystem = requestFileSystemSync(TEMPORARY, 100);
debug("Successfully obtained TEMPORARY FileSystem:" + fileSystem.name);
shouldBeTrue("fileSystem.name.length > 0");
shouldBe("fileSystem.root.fullPath", '"/"');
finishJSTest();
var successfullyParsed = true;
|