Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / tables / crashtests / 331446-1.xhtml
blob6aab87c8e2228783d80f3170577265be3532c854
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head>
4 <style id="styles"></style>
6 <script>
8 window.addEventListener("load", f1, false);
10 function f1()
12 document.getElementById("div2").setAttribute("style", "position: absolute;");
13 document.getElementById("table").setAttribute("style", "width: 200%;");
14 setTimeout(f2, 30);
17 function f2()
19 document.getElementById("styles").textContent = ".thisMatchesNothing { }";
20 document.documentElement.removeAttribute("class");
23 </script>
25 </head>
27 <body style="position: relative; -moz-column-width: 1px;">
29 <table id="table">
30 <tr>
31 <td>Table</td>
32 </tr>
33 </table>
35 <div>A</div>
37 <div id="div2">B</div>
39 <div style="display: table; width: 200%;">C</div>
41 </body>
42 </html>