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

Side by Side Diff: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap.html

Issue 63623002: [CSS Shapes] Image shape-outside with vertical gaps is handled incorrectly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #content {
6 font-size: 30px;
7 color: green;
8 }
9
10 #image-shape {
11 float: left;
12 -webkit-shape-outside: url("data:image/svg+xml;utf8,<svg xmlns='http://w ww.w3.org/2000/svg' width='100px' height='100px'><rect width='100' height='40'/> <rect y='90' width='100' height='40'/></svg>");
Zoltan 2013/11/07 02:07:41 We don't use the -webkit- prefix anymore.
13 }
14 </style>
15 </head>
16 <body>
17 <p>The lines of text below should appear to the right of the blue rectangles.< /p>
18 <div id="content">
19 <IMG id="image-shape" src="data:image/svg+xml;utf8,<svg xmlns='http://www. w3.org/2000/svg' width='100px' height='100px' fill='blue'><rect width='100' heig ht='40'/><rect y='60' width='100' height='40'/></svg>">
20 One<br>Two<br>Free<br>Four
21 </div>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-image-vgap-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698