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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-percentage-auto.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 shape-inside: polygon(10% 100%, 90% 100%, 90% 200px, 10% 200px);
7 position: relative;
8 max-height: 200px;
9 }
10 #border {
11 position: absolute;
12 left: 10%;
13 width: 80%;
14 height: 100%;
15 border: 2px solid blue;
16 }
17 </style>
18 </head>
19 <body>
20 <div id="shape-inside">
21 <div id="border"></div>
22 This text should be contained by a blue rectangle. The rectangle should be
23 just tall enough to contain the text. There should not be room for any
24 additional lines above this text.
25 </div>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698