OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>CSS Test: Wrapping content around shape given by a right floating svg
file</title> |
| 5 <link rel="author" title="Zoltan Horvath" href="zoltan@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-002-ref.html"/> |
| 9 <meta name="flags" content="ahem"/> |
| 10 <meta name="assert" content="This test verifies that content wraps around th
e shape defined by an svg file."/> |
| 11 <style type="text/css"> |
| 12 .container { |
| 13 position: relative; |
| 14 font-family: Ahem; |
| 15 font-size: 50px; |
| 16 line-height: 50px; |
| 17 color: rgb(0, 100, 0); |
| 18 background-color: red; |
| 19 } |
| 20 #test { |
| 21 width: 100px; |
| 22 height: 100px; |
| 23 text-align: right; |
| 24 } |
| 25 #image { |
| 26 float: right; |
| 27 margin-left: 10px; |
| 28 shape-outside: url("support/right-half-rectangle.svg"); |
| 29 } |
| 30 </style> |
| 31 </head> |
| 32 <body> |
| 33 <p> |
| 34 The test passes if you see a solid green square. There should be no red. |
| 35 </p> |
| 36 <div id="test" class="container"> |
| 37 <img id="image" src="support/right-half-rectangle.svg"/> |
| 38 X |
| 39 X |
| 40 </div> |
| 41 <div id="overlay"></div> |
| 42 </body> |
| 43 </html> |
OLD | NEW |