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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-stacked-002.html

Issue 149513005: Stacked floats with shape-outside should allow inline content to interact with the non-outermost fl… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Replace nullptr with 0 to make linux build happy Created 6 years, 9 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 width: 200px;
5 height: 100px;
6 font: 50px/1 Ahem, sans-serif;
7 background-color: red;
8 margin-bottom: 50px;
9 color: green;
10 }
11 .float-left-inner {
12 width: 100px;
13 height: 100px;
14 float: left;
15 background-color: green;
16 shape-outside: inset(0 50% 0 0);
17 }
18 .float-left-outer {
19 margin-right: 50px;
20 width: 50px;
21 height: 100px;
22 float: left;
23 background-color: green;
24 shape-outside: inset(0 50% 0 0);
25 }
26 .float-right-inner {
27 width: 100px;
28 height: 100px;
29 float: right;
30 background-color: green;
31 shape-outside: inset(0 0 0 50%);
32 }
33 .float-right-outer {
34 margin-left: 50px;
35 width: 50px;
36 height: 100px;
37 float: right;
38 background-color: green;
39 shape-outside: inset(0 0 0 50%);
40 }
41 </style>
42 <body>
43 <p>Shapes should not affact float stacking, but should affect inline content .</p>
44 <p>You should see two green rectanges. There should be no red.</p>
45 <div class="container">
46 <div class="float-left-inner"></div>
47 <div class="float-left-outer"></div>
48 X<br/>
49 X
50 </div>
51 <div class="container" style="text-align: right">
52 <div class="float-right-inner"></div>
53 <div class="float-right-outer"></div>
54 X<br/>
55 X
56 </div>
57 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698