Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-image-fit-001.html
blobe82ed5e27dad9c1b4dbce72b89a3861807bc5d1e
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #image-shape {
6 float: left;
7 shape-outside: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' fill='blue'/></svg>");
8 width: 100px;
9 height: 200px;
10 margin-right: 50px; /* expose shape-outside property failures */
13 #content {
14 font: 50px/1 Ahem, sans-serif;
15 color: green;
17 </style>
18 <div id="content">
19 <img id="image-shape"
20 src="data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' fill='blue'/></svg>"/>
21 X<br>X<br>X<br>X<br>X
22 </div>
23 </body>
24 </html>