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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-image-set.html

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #image-shape-inside {
6 shape-inside: -webkit-image-set(url("data:image/svg+xml;utf8,<svg xmlns= 'http://www.w3.org/2000/svg' width='140px' height='50px'><rect x='20' y='0' widt h='120' height='50' fill='blue'/></svg>") 1x);
7 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3 .org/2000/svg' width='140px' height='50px'><rect x='20' y='0' width='120' height ='50' fill='blue'/></svg>");
8 background-repeat: no-repeat;
9 width: 150px;
10 height: 50px;
11 }
12 </style>
13 </head>
14 <body>
15 <p>The white "Hello World" should appear in the upper left of the blue rectang le.</p>
16 <div style="color: white">
17 <div id="image-shape-inside">Hello World</div>
18 </div>
19 </body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698