Bug 1897246 - Implement "Add to Home screen" menu functionality. r=android-reviewers,gl
[gecko.git] / layout / tables / crashtests / 460637-2.xhtml
blob23f39595079f9c129271b8358ec2fcb8de353ab9
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head><script type="text/javascript">
3 <![CDATA[
5 function boom() {
6 var tr = document.getElementById('tr');
7 th = document.createElementNS("http://www.w3.org/1999/xhtml", 'th');
8 th.setAttribute('rowspan', 9);
9 tr.appendChild(th);
10 document.documentElement.removeAttribute("class");
14 function ol(e) {
15 window.removeEventListener("load", ol);
16 setTimeout(boom, 400);
19 window.addEventListener("load", ol);
21 ]]></script>
22 </head>
23 <body><table style="border-collapse: collapse;"><tbody><tr id="tr"></tr></tbody></table></body>
24 </html>