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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-not-a-layer.html

Issue 23866007: Fix painting order for floats with shape-outside (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .container {
4 font: 10px/1 Ahem;
5 color: green;
6 }
7 .left {
8 float: left;
9 height: 10px;
10 width: 50px;
11 background-color: red;
12 -webkit-shape-outside: rectangle(0, 0, 0, 100%);
13 }
14 </style>
15 <body>
16 You should see a green rectangle. You shouldn't see any red.
17 <div class="container">
18 <div class="left"></div>
19 XXXXX
20 </div>
21 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698