summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/filesystem/filesystem-missing-arguments.html
blob: e8e9e90be93e0d68f3f63156f7093d849fcb8c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<script>
description('Test how file system methods react to too few arguments.');
shouldThrow("webkitRequestFileSystem()");
shouldThrow("webkitRequestFileSystem(TEMPORARY)");
shouldThrow("webkitResolveLocalFileSystemURL()");
</script>
</body>
</html>