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

Side by Side Diff: LayoutTests/http/tests/css/shape-image-file.html

Issue 226203010: [CSS Shapes] shape-outside from image doesn't load properly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: corrected a flaw in clearShapeOutside that cropped up in webkit_unit_test 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
« no previous file with comments | « no previous file | LayoutTests/http/tests/css/shape-image-file-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 #image-shape {
6 float: left;
7 shape-outside: url("resources/abe.png"); /* size: 76x103 */
8 margin-right: 100px; /* expose shape-outside failures */
9 }
10
11 #content {
12 font: 60px/1 Ahem, sans-serif;
13 color: green;
14 }
15 </style>
16 <p>The green squares should appear to the right of and below Abe's photo.</p>
17 <div id="content">
18 <img id="image-shape" src="resources/abe.png"/>
19 X<br>X<br>X
20 </div>
21 </body>
22 </html>
23
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/css/shape-image-file-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698