blob: fbaf4a783041896072fb19ebce027a3f8d2ea344 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/js-test-pre.js"></script>
<script>
description('Ensures that we get exceptions when we do not include required arguments for webkitStorageInfo methods.');
if (window.webkitStorageInfo) {
var notEnoughArguments = '"TypeError: Not enough arguments"';
shouldThrow('webkitStorageInfo.requestQuota()', notEnoughArguments);
shouldThrow('webkitStorageInfo.requestQuota(webkitStorageInfo.TEMPORARY)', notEnoughArguments);
shouldThrow('webkitStorageInfo.queryUsageAndQuota()', notEnoughArguments);
} else
debug("This test requires window.webkitStorageInfo.");
</script>
<script src="../resources/js-test-post.js"></script>