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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-polygon-padding-001-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 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #shape-inside {
6 position: relative;
7 }
8
9 #shape-outline {
10 position: absolute;
11 top: 0px;
12 left: 0px;
13 width: 375px;
14 height: 375px;
15 }
16
17 #shape-content {
18 position: absolute;
19 top: 50px;
20 left: 50px;
21 width: 325px;
22 height: 325px;
23 font: 100px/1 Ahem, sans-serif;
24 color: green;
25 }
26 </style>
27 </head>
28 <body>
29 <p>The blue outline should be filled by 9 green squares.</p>
30 <div id="shape-inside">
31 <div id="shape-content">XXX<br/>XXX<br/>XXX</div>
32 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg">
33 <rect x="50" y="50" width="300" height="300" stroke="blue" fill="non e"/>
34 </svg>
35 </div>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698