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

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

Powered by Google App Engine
This is Rietveld 408576698