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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-first-fit-002.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 #shape-inside {
6 position: relative;
7 width: 300px;
8 height: 200px;
9 shape-inside: polygon(0px 0px, 150px 150px, 300px 0px, 300px 200px, 0px 200px);
10 font: 50px/1 Ahem, sans-serif;
11 color: green;
12 }
13
14 #shape-outline {
15 position: absolute;
16 top: 0px;
17 left: 0px;
18 width: 300px;
19 height: 200px;
20 }
21 </style>
22 </head>
23 <body>
24 <p>The solid green rectangles should be contained by the blue outline.</p>
25 <div id="shape-inside">
26 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg">
27 <polygon points="0,0 150,150 300,0 300,200 0,200" stroke="blue" fill ="none"/>
28 </svg>
29 X X XX XX XXXXXX
30 </div>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698