layout/reftests/bugs/372553-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>
     5 <style>
     7 body {
     8   width: 5em;
     9   font-family: monospace;
    10   border: 1px solid yellow; 
    11 }
    13 body:first-letter { 
    14   color: blue; 
    15 }
    17 </style>
    19 </head>
    20 <body>
    22 <span><span><span id="sss">Aaa </span></span>Bbbbbbbbbbbbbb<span></span></span>
    24 <script>
    25 document.body.offsetWidth;
    26 sss = document.getElementById("sss");
    27 sss.parentNode.removeChild(sss);
    28 </script>
    30 </body>
    31 </html>

mercurial