Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-big-box-border-radius-002-expected.html

Issue 230403003: [CSS Shapes] large corner radius combined with 0 radius does not wrap properly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Use unprefixed version Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 #container {
4 width: 300px;
5 font: 40px/1 Ahem;
6 color: green;
7 text-align: right;
8 }
9
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;
20 }
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698