layout/reftests/first-letter/379799-1.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     5 <style id="firstLetterSheet">
     6   .fl:first-letter { color: red }
     7 </style>
     9 <script>
    11 function boom()
    12 {
    13   document.getElementById("parent").className = "";
    14   document.body.offsetWidth;
    15   document.getElementById("test").style.position = "relative";
    16 }
    18 </script>
    20 </head>
    22 <body onload="boom()">
    24 <div class="fl" id="parent" style="color: green">
    25   Foo <span id="test">Bar</span>
    26 </div>
    28 </body>
    29 </html>

mercurial