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

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

Powered by Google App Engine
This is Rietveld 408576698