layout/tables/crashtests/460637-3.xhtml

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
     2 <head><script type="text/javascript">
     3 <![CDATA[
     5   function boom() {
     6     const HTML_NS = "http://www.w3.org/1999/xhtml";
     7     var tr4 = document.createElementNS(HTML_NS, 'tr');
     8     document.getElementById('tbody1').appendChild(tr4);
     9     var span1 = document.createElementNS(HTML_NS, 'td');
    10     tr4.insertBefore(span1, null);
    11     document.documentElement.removeAttribute("class");
    12   }
    14   function ol(e) {
    15     window.removeEventListener("load", ol, false);
    16     setTimeout(boom, 400);
    17   }
    19   window.addEventListener("load", ol, false);
    21 ]]>
    22 </script>
    23 </head>
    25 <body><table><tbody id="tbody1"><tr><td rowspan="0"></td></tr></tbody></table></body>
    26 </html>

mercurial