Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-big-box-border-radius-002-expected.html
blobd0906f09b77470327ad60100d026eb0530d72d3b
1 <!DOCTYPE html>
2 <style>
3 #container {
4 width: 300px;
5 font: 40px/1 Ahem;
6 color: green;
7 text-align: right;
10 #float {
11 float: right;
12 width: 240px;
13 height: 120px;
14 border-top-left-radius: 60px;
15 border-bottom-left-radius: 60px;
16 border-top-right-radius: 0px;
17 border-bottom-right-radius: 120px;
18 background-color: blue;
19 background-clip: border-box;
21 </style>
22 <body>
23 <p>The green square should apear to the left of the blue rounded shape.
24 <div id="container">
25 <div id="float"></div>
26 <br>X
27 </div>
28 </body>