blob: 6ddcbb819b03da9c36b1113ca8eb914e6ac7388b [file] [log] [blame]
description("This tests webkitStorageInfo.requestQuota.");
function errorCallback(error)
{
testFailed("Error occurred: " + error);
finishJSTest();
}
var grantedQuota;
function quotaCallback(newQuota)
{
grantedQuota = newQuota;
// We must be given 0 quota, the same amount as we requested.
shouldBe("grantedQuota", "0");
finishJSTest();
}
if (window.webkitStorageInfo) {
window.jsTestIsAsync = true;
// Requesting '0' quota for testing (this request must be almost always granted without showing any platform specific notification UI).
webkitStorageInfo.requestQuota(webkitStorageInfo.TEMPORARY, 0, quotaCallback, errorCallback);
} else
debug("This test requires window.webkitStorageInfo.");
window.successfullyParsed = true;