Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / tables / crashtests / 403249-1.html
blob5f956d2ee30ab28d9b40fd2b074b252e5c39059e
1 <html>
2 <head>
3 <script>
5 function boom()
7 var col = document.createElement("col");
8 col.setAttribute('span', 2);
9 document.body.appendChild(col);
10 col.removeAttribute('span');
11 document.body.offsetHeight;
12 document.body.removeChild(col);
15 </script>
16 </head>
18 <body onload="boom();"></body>
20 </html>