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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-ellipse-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 <script src="../resources/subpixel-utils.js"></script>
5 <style>
6 #shape-inside {
7 position: relative;
8 }
9
10 #shape-outline {
11 position: absolute;
12 top: 0px;
13 left: 0px;
14 width: 500px;
15 height: 500px;
16 }
17
18 #shape-content {
19 top: 130.435px;
20 left: 130.975px;
21 position: absolute;
22 font: 178px/1 Ahem, sans-serif;
23 color: green;
24 }
25 </style>
26 </head>
27 <body>
28 <div id="shape-inside">
29 <div id="shape-content">X</div>
30 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg">
31 <ellipse cx="220" cy="220" rx="200" ry="100" stroke="blue" fill="no ne"/>
32 </svg>
33 </div>
34 </body>
35 <script>
36 if (!SubPixelLayout.isEnabled()) {
37 document.getElementById("shape-content").style.left = "128px";
38 document.getElementById("shape-content").style.top = "131px";
39 }
40 </script>
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698