7 document
.getElementById('console').appendChild(document
.createTextNode(message
+ "\n"));
12 log("Test calling revokeObjectURL with no argument.");
14 var url
= URL
.revokeObjectURL();
17 log("PASS: " + err
.message
);
20 log("Test calling revokeObjectURL with empty URL.");
21 URL
.revokeObjectURL("");
24 log("Test calling revokeObjectURL with invalid URL.");
25 URL
.revokeObjectURL("[foo bar]");
28 log("Test calling revokeObjectURL with non-existent URL.");
29 URL
.revokeObjectURL("blob:non-existent");
35 if (window
.testRunner
)
36 testRunner
.dumpAsText();
39 <body onload=
"test()">
40 <pre id='console'
></pre>