OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>CSS Test: right float, url(jpg), real image + shape-margin (%)</title
> |
| 5 <link rel="author" title="Hans Muller" href="hmuller@adobe.com"/> |
| 6 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image"
/> |
| 7 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-prop
erty"/> |
| 8 <link rel="match" href="reference/shape-image-018-ref.html"/> |
| 9 <meta name="flags" content="ahem"/> |
| 10 <meta name="assert" content="This test verifies that the boundary of a shape
-outside defined by a JPEG image file is the same as the image's dimensions + sh
ape-margin."/> |
| 11 <style type="text/css"> |
| 12 #container { |
| 13 position: relative; |
| 14 width: 200px; |
| 15 font-family: Ahem; |
| 16 font-size: 40px; |
| 17 text-align: right; |
| 18 color: green; |
| 19 } |
| 20 #image { |
| 21 float: right; |
| 22 margin-left: 100px; |
| 23 shape-outside: url("support/left-half-rectangle.jpg"); /* size: 100x
100, no alpha channel */ |
| 24 shape-margin: 10%; /* overall shape is 120x120 rectangle with corner
radii = 10px */ |
| 25 } |
| 26 #failure { |
| 27 position: absolute; |
| 28 top: 0px; |
| 29 left: 40px; /* container.width - shape-outside+margin.width - font-s
ize */ |
| 30 width: 200px; |
| 31 text-align: left; |
| 32 color: red; |
| 33 z-index: -1; |
| 34 } |
| 35 </style> |
| 36 </head> |
| 37 <body> |
| 38 <p>The test passes if no red is visible.</p> |
| 39 <div id="container"> |
| 40 <img id="image" src="support/left-half-rectangle.jpg"/> |
| 41 X<br>X<br>X<br>X |
| 42 <div id="failure"> |
| 43 X<br>X<br>X<br><span style="margin-left: 120px">X |
| 44 </div> |
| 45 </div> |
| 46 </body> |
| 47 </html> |
OLD | NEW |