5 testRunner
.dumpAsText();
8 if (window
.GCController
)
9 return GCController
.collect();
11 for (var i
= 0; i
< 10000; i
++)
12 var s
= new String("abc");
15 function crash_test(element_name
) {
16 var element
= document
.createElement(element_name
);
17 element
.setAttribute('form', '1');
18 var container
= document
.createElement('div');
19 container
.appendChild(element
);
20 document
.implementation
.createDocument(null, '').adoptNode(container
);
21 container
.removeChild(element
);
24 var form
= document
.createElement('form');
25 form
.setAttribute('id', '2');
26 document
.body
.appendChild(form
)
32 document
.body
.innerHTML
+= "PASS";
36 <body onload=
"test()">
38 This page is a test case for
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=51418">Bug
51418</a>. WebKit should not crash when this page is loaded.