Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / style / crashtests / 383979-1.xhtml
blob9a3f8e67357a5472ceed86dfccdfb2f3df707216
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script>
5 function boom()
7 document.getElementById("div1").appendChild(document.getElementById("div2"));
10 </script>
12 <style type="text/css">
14 #s1, #s2 {
15 font: 8pt arial;
18 #div1 #s1, #div1 #s2 {
19 font-size: 20pt;
22 </style>
23 </head>
25 <body onload="boom();">
27 <div id="div1"></div>
28 <div id="div2"><span id="s1"><span id="s2">foo</span></span></div>
30 </body>
31 </html>