Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
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> |