| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <title>CSS Test: shape-outside on floats with a positive top margin, vertical wr
iting mode</title> | |
| 3 <link rel="author" title="Adobe" href="http://html.adobe.com/"> | |
| 4 <link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com"> | |
| 5 <link rel="help" href="http://dev.w3.org/csswg/css-shapes-1/#relation-to-box-mod
el-and-float-behavior"> | |
| 6 <meta name="assert" content="This tests that a positive margin on the logical to
p side of a float does not affect inline content wrapping around the shape."> | |
| 7 <link rel="match" href="shape-outside-floats-margin-004-ref.html"> | |
| 8 <meta name="flags" content="ahem"> | |
| 9 <head> | |
| 10 <style> | |
| 11 .container { | |
| 12 font: 20px/1 Ahem, sans-serif; | |
| 13 line-height: 20px; | |
| 14 width: 60px; | |
| 15 height: 100px; | |
| 16 border: 1px solid black; | |
| 17 color: green; | |
| 18 display: inline-block; | |
| 19 background-color: red; | |
| 20 -webkit-writing-mode: vertical-lr; | |
| 21 } | |
| 22 | |
| 23 #float-left { | |
| 24 float: left; | |
| 25 width: 20px; | |
| 26 height: 100px; | |
| 27 shape-outside: rectangle(0, 0, 100%, 100%) content-box; | |
| 28 margin-right: 20px; | |
| 29 background-color: green; | |
| 30 } | |
| 31 | |
| 32 #float-right { | |
| 33 float: right; | |
| 34 width: 20px; | |
| 35 height: 100px; | |
| 36 shape-outside: rectangle(0, 0, 100%, 100%) content-box; | |
| 37 margin-right: 20px; | |
| 38 background-color: green; | |
| 39 } | |
| 40 </style> | |
| 41 | |
| 42 <body> | |
| 43 <p>This should display two green rectangles. You should not see any red.</p> | |
| 44 <div class="container"> | |
| 45 XXXXX | |
| 46 <div id="float-left"> | |
| 47 </div> | |
| 48 XXXXX | |
| 49 </div> | |
| 50 <div class="container"> | |
| 51 XXXXX | |
| 52 <div id="float-right"> | |
| 53 </div> | |
| 54 XXXXX | |
| 55 </div> | |
| 56 </body> | |
| OLD | NEW |