blob: fb7a0eb3728949a74f1856a7d4bee1e109ef989d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE HTML>
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
description("Test required arguments of URL object.");
shouldThrow("URL.createObjectURL()");
shouldThrow("URL.revokeObjectURL()");
</script>
</body>
</html>
|