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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-polygon-zero-vertex-expected.html

Issue 264453009: [CSS Shapes] shape-outside polygon can fail when line-top intersects a vertex (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove -webkit-font-smoothing Created 6 years, 7 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: 400px;
5 text-align: right;
6 font: 50px/1 Ahem, sans-serif;
7 -webkit-font-smoothing: antialiased;
8 color: rgba(0, 255, 0, 0.5);
9 }
10
11 #shape1 {
12 float: right;
13 width: 200px;
14 height: 100px;
15 background-color: blue;
16 }
17
18 #shape2 {
19 clear: right;
20 float: right;
21 width: 100px;
22 height: 100px;
23 background-color: blue;
24 }
25 </style>
26
27 <p>The green rectangles should wrap around the left edge of the blue shape.</p>
28 <div id="container">
29 <div id="shape1"></div>
30 <div id="shape2"></div>
31 X<br>X<br>X<br>X<br>X
32 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698