8 <iframe id=
"iframe" width=
"1"></iframe>
9 <p>This tests to make sure that an iframe with custom scrollbars that is
10 hidden does not crash the browser when unloaded. The test passes if it does
17 if (document
.location
.search
== "?done") {
18 document
.body
.appendChild(document
.createTextNode("PASSED"));
19 if (window
.testRunner
)
20 testRunner
.notifyDone();
24 if (window
.testRunner
) {
25 testRunner
.waitUntilDone();
26 testRunner
.dumpAsText();
29 setTimeout(function() {
30 document
.getElementById("iframe").style
.display
= "none";
32 // Unload the page to see if the crash is triggered.
33 document
.location
.href
= "?done";