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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-regular-polygon8.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 <script src="../resources/simple-polygon.js"></script>
6 <script>
7 var vertices = createRegularPolygonVertices(400, 8); // 400x400 regular octa hedron
8 var lineHeight = 40;
9
10 function init() {
11 createPolygonShapeInsideTestCase();
12 }
13 </script>
14
15 <style id="stylesheet">
16 #polygon-shape-inside, #polygon-svg-shape {
17 position: absolute;
18 left: 0px;
19 top: 0px;
20 }
21 </style>
22 </head>
23
24 <body onload="init()">
25 <svg id="polygon-svg-shape" xmlns="http://www.w3.org/2000/svg"></svg>
26 <div id="polygon-shape-inside"></div>
27 <p id="informative-text">
28 This test requires the Ahem font. It creates a polygonal shape-inside and a matching
29 filled SVG polygon. The content should just fill the shape with alternatin g black and
30 empty rectangles on each line.</p>
31 </body>
32
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698