4 var blob
= new Blob([]);
10 window
.gc = function()
12 if (window
.GCController
)
13 return GCController
.collect();
14 for (var i
= 0; i
< 10000; i
++)
15 var s
= new String("abc");
21 if (window
.testRunner
)
23 testRunner
.dumpAsText();
24 testRunner
.setCanOpenWindows();
25 testRunner
.setCloseRemainingWindowsWhenComplete(true);
26 testRunner
.waitUntilDone();
32 win
.location
= "nothing";
36 document
.body
.innerHTML
= "PASS";
37 if (window
.testRunner
)
38 testRunner
.notifyDone();
44 url
.createObjectURL(blob
);
50 document
.body
.innerHTML
= "PASS";
51 if (window
.testRunner
)
52 testRunner
.notifyDone();
56 <body onload=
"load()">