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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-001.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-001.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-001.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-001.html
deleted file mode 100644
index c134e5454a644e42d99f666bc077c103bc3bb3eb..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-complex-polygon-001.html
+++ /dev/null
@@ -1,39 +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(evenodd, 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">X X XXX</div>
- <p id="informative-text">
- This test requires the Ahem font. It creates a self-intersecting rectilinear polygonal
- shape-inside with fillRule = evenodd. The content should just fill the U
- shaped area with green rectangles.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698