layout/reftests/bugs/389636-1.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3 <head>
     4 <script>
     5 function finishTest()
     6 {
     7   document.documentElement.className = "";
     8 }
    10 function boom()
    11 {
    12   var HTML_NS = "http://www.w3.org/1999/xhtml";
    13   var XUL_NS  = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
    15   var clonedRichListBox = document.createElementNS(XUL_NS, 'richlistbox').cloneNode(false);
    16   var div = document.createElementNS(HTML_NS, "div");
    18   div.appendChild(clonedRichListBox);
    20   document.body.appendChild(clonedRichListBox);
    22   setTimeout(finishTest, 100);
    23 }
    25 </script>
    27 </head>
    28 <body onload="setTimeout(boom, 100);" style="visibility: hidden"> 
    30 </body>
    31 </html>

mercurial