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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-first-fit-reflex-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, 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #shape-inside {
6 position: relative;
7 width: 380px;
8 height: 150px;
9 }
10
11 #shape-outline {
12 position: absolute;
13 top: 0px;
14 left: 0px;
15 width: 380px;
16 height: 150px;
17 }
18
19 #shape-text {
20 position: absolute;
21 top: 0px;
22 left: 50px;
23 font: 40px/1 Ahem, sans-serif;
24 color: green;
25 }
26 </style>
27 </head>
28 <body>
29 <p>The row of four solid green rectangles should be top-justified within the blue outline.</p>
30 <div id="shape-inside">
31 <div id="shape-text">X X X X</div>
32 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg">
33 <polygon points="0,0 380,0 330,25 380,100 0,100 50,25" stroke="blue" fill="none"/>
34 </svg>
35 </div>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698