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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-002.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-002.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-002.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-002.html
deleted file mode 100644
index 081acd5edb36a331ca35b7b5da6ec75571307f88..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-002.html
+++ /dev/null
@@ -1,40 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<style>
- /* This rectilinear polygon contains a self-intersecting loop (the vertices are
- numbered in the figure:
-
- 0----4----1----5
- | | | |
- | 3----2 |
- 7--------------6
-
- When the fillRule is nonzero the entire rectangle is filled because
- edges 7-0 and 3-4 wind in same direction. When fillRule is evenodd the
- 1-2-3-4 rectangle is not filled, leaving a U shape.
- */
- #polygon-shape-inside {
- width: 200px;
- height: 150px;
- font: 50px/1 Ahem, sans-serif;
- color: green;
- shape-inside: polygon(nonzero, 50px 50px, 150px 50px, 150px 100px, 100px 100px, 100px 50px, 200px 50px, 200px 150px, 50px 150px);
- }
-
- #informative-text {
- position: absolute;
- top: 150px;
- left: 50px;
- }
-</style>
-</head>
-<body style="position:relative">
- <div id="polygon-shape-inside">XXX XXX</div>
- <p id="informative-text">
- This test requires the Ahem font. It creates a self-intersecting rectilinear polygonal
- shape-inside with the default fillRule (nonzero). The content should just fill the
- shape with solid green rectangles.</p>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698