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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-content-box.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 <html>
2 <head>
3 <style>
4 .shape {
5 font: 30px/1 Ahem, sans-serif;
6 color: green;
7 margin: 20px;
8 }
9 .content-box {
10 shape-inside: content-box;
11 background-clip: content-box;
12 background-color: red;
13 width: 90px;
14 height: 90px;
15 }
16 .rounded-content-box {
17 shape-inside: content-box;
18 background-clip: content-box;
19 background-color: grey;
20 width: 90px;
21 height: 90px;
22 border-radius: 30px;
23 }
24 </style>
25 </head>
26 <body>
27 <p>Check that shape-inside:content-box works correctly.</p>
28 <div class='shape content-box'>XXX XXX XXX</div>
29 <div class='shape rounded-content-box'>X XXX X</div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698