layout/reftests/bugs/50630-1b.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 <title>CSS 2.1 Test Suite: Test for float placement rules</title>
     5 <link rel="author" title="Robert O'Callahan" href="mailto:robert@ocallahan.org" />
     6 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
     7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" />
     8 <meta name="assert" content="A floating box must be placed as high as possible. " />
     9 <meta name="flags" content="" />
    10 <style>
    11 .left { float:left; }
    12 .right { float:right; }
    13 .left, .right { width:50px; height:50px; background:yellow; }
    14 p { overflow:auto; }
    15 </style>
    16 </head>
    17 <body style="width:400px">
    18 <p><span>Hello<span class="left"></span></span>Kitty
    19 <p><span>Hello<span class="right"></span></span>Kitty
    20 <p dir="rtl"><span>Hello<span class="left"></span></span>Kitty
    21 <p dir="rtl"><span>Hello<span class="right"></span></span>Kitty
    22 <p style="text-align:right;"><span>Hello<span class="left"></span></span>Kitty
    23 <p style="text-align:right;"><span>Hello<span class="right"></span></span>Kitty
    24 </body>
    25 </html>

mercurial