layout/reftests/floats/other-float-outside-rule-7-right.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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 7 says:
michael@0 11
michael@0 12 A left-floating box that has another left-floating box to its left
michael@0 13 may not have its right outer edge to the right of its containing
michael@0 14 block's right edge. (Loosely: a left float may not stick out at the
michael@0 15 right edge, unless it is already as far to the left as possible.) An
michael@0 16 analogous rule holds for right-floating elements.
michael@0 17
michael@0 18 -->
michael@0 19
michael@0 20 <!-- the block formatting context inside which we're testing -->
michael@0 21 <div style="float: left; width: 500px; height: 500px">
michael@0 22
michael@0 23 <div style="float: right; width: 50px; height: 300px"></div>
michael@0 24
michael@0 25 <div style="margin-right: 100px"> <!-- 400px wide -->
michael@0 26
michael@0 27 <!-- we're testing the position of this float -->
michael@0 28 <div style="float: right; width: 425px; height: 10px; background: blue"></div>
michael@0 29
michael@0 30 </div>
michael@0 31
michael@0 32 </div>

mercurial