layout/reftests/ib-split/whitespace-present-1b.html

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <!DOCTYPE html>
     2 <html>
     3  <head>
     4     <title>CSS 2.1 Test Suite: handling of blocks inside inlines</title>
     5     <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
     6     <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
     7     <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level"/>
     8     <meta name="flags" content="dom" />
     9   <style>
    10     body > span { border: 3px solid blue }
    11   </style>
    12   <script>
    13     function doIt() {
    14       var t = document.createTextNode("   ");
    15       var d = document.getElementById("d");
    16       d.parentNode.insertBefore(t, d);
    17     }
    18   </script>
    19  </head>
    20  <body onload="doIt()">
    21    <span>
    22      <div>One</div><div id="d">Two</div>
    23    </span>
    24  </body>
    25 </html>

mercurial