blob: 41585e99a36845dcd8625df4c5f01d263c1b53e0 [file] [log] [blame]
if (this.importScripts) {
importScripts('../resources/fs-worker-common.js');
importScripts('../../../resources/js-test.js');
importScripts('../resources/fs-test-util.js');
}
description("DirectoryEntry required arguments test.");
var fileSystem = null;
function errorCallback(error) {
debug("Error occurred while requesting a TEMPORARY file system:" + error.name);
finishJSTest();
}
function successCallback(fs) {
fileSystem = fs;
debug("Successfully obtained TEMPORARY FileSystem:" + fileSystem.name);
root = evalAndLog("root = fileSystem.root");
shouldThrow("root.getDirectory()");
finishJSTest();
}
var jsTestIsAsync = true;
evalAndLog("webkitRequestFileSystem(TEMPORARY, 100, successCallback, errorCallback);");
var successfullyParsed = true;