summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/files/url-null.html
blob: 744a833a6d70633e205e5a795cafdaaf11b107ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<html>
 <head>
    <script src="../../resources/js-test.js"></script>
 </head>
 <body>
    <div id="description"></div>
    <div id="console"></div>
<script>
description("Test URL methods with null arguments.");

shouldBe("URL.createObjectURL(null)", "null");
evalAndLog("URL.revokeObjectURL(null)");
var successfullyParsed = true;

</script>
 </body>
</html>