layout/reftests/bugs/398101-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>
     3 <head>
     4 <script>
     6 function boom()
     7 {
     8   var c = document.getElementById("c");
     9   var space = document.createTextNode(" ");
    10   c.parentNode.insertBefore(space, c);
    11 }
    13 </script>
    14 </head>
    15 <body style="font-family: monospace;" onload="boom();">
    17 <div style="width: 3ch; border: 1px solid orange;">
    18   <span>a</span> <span>b</span><span id="c">c</span>
    19 </div>
    21 </body>
    22 </html>

mercurial