layout/reftests/bugs/372553-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     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