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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-content-box-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 <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 background-clip: content-box;
11 background-color: red;
12 width: 90px;
13 height: 90px;
14 }
15 .rounded-content-box {
16 background-clip: content-box;
17 background-color: grey;
18 width: 90px;
19 height: 90px;
20 border-radius: 30px;
21 }
22 </style>
23 </head>
24 <body>
25 <p>Check that shape-inside:content-box works correctly.</p>
26 <div class='shape content-box'>XXX XXX XXX</div>
27 <div class='shape rounded-content-box'>&nbsp;X<br>XXX<br>&nbsp;X</div>
28 </body>
29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698