Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-relative-size-svg.html
blobbbed6aeb981386e0cea6c716c23f0faf031d2286
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #container {
6 color: green;
7 font: 100px/1 Ahem, sans-serif;
9 #shape-outside {
10 margin-top: 100px;
11 width: 200px;
12 height: 400px;
13 float: left;
14 shape-outside: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='50%' height='25%' fill='blue' /></svg>");
15 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='50%' height='25%' fill='blue' /></svg>");
16 background-repeat: no-repeat;
18 </style>
19 </head>
20 <body>
21 <p>You should see three green squares: above the blue square, to the blue square's right, and below the blue square.</p>
22 <div id="container">
23 <div id="shape-outside"></div>
24 X<br>X<br>X
25 </div>
26 </body>
27 </html>