layout/reftests/floats/other-float-outside-rule-3-right.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.

michael@0 1 <!DOCTYPE HTML>
michael@0 2 <title>CSS 2.1 Test Suite: float placement around other float in BFC but outside containing block</title>
michael@0 3 <link rel="author" title="L. David Baron" href="http://dbaron.org/" />
michael@0 4 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
michael@0 5 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats"/>
michael@0 6 <meta name="flags" content="" />
michael@0 7 <meta name="assert" content="Test for float placement around other float in BFC but outside containing block" />
michael@0 8
michael@0 9 <!--
michael@0 10 CSS2.1 9.5.1 rule 3 says:
michael@0 11
michael@0 12 The right outer edge of a left-floating box may not be to the right
michael@0 13 of the left outer edge of any right-floating box that is to the
michael@0 14 right of it. Analogous rules hold for right-floating elements.
michael@0 15
michael@0 16 -->
michael@0 17
michael@0 18 <!-- the block formatting context inside which we're testing -->
michael@0 19 <div style="float: left; width: 500px; height: 500px">
michael@0 20
michael@0 21 <div style="float: left; width: 50px; height: 300px"></div>
michael@0 22
michael@0 23 <div style="margin-left: 100px"> <!-- 400px wide -->
michael@0 24
michael@0 25 <!-- we're testing the position of this float -->
michael@0 26 <div style="float: right; width: 425px; height: 10px; background: blue"></div>
michael@0 27
michael@0 28 </div>
michael@0 29
michael@0 30 </div>

mercurial