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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004.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-rectilinear-polygon-004.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004.html
deleted file mode 100644
index ad641d975f91b62f082c198cfcfb2f1b74ad12cf..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-004.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<!--
-Test test creates a rectilinear polygon with this shape:
- XXXX
- XXXX
- XXXX
--->
-
-<style id="stylesheet">
- #shape-inside, #shape-outline {
- position: absolute;
- top: 0;
- left: 0;
- width: 400px;
- height: 200px;
- margin: 0;
- }
-
- #shape-inside {
- shape-inside: polygon(200px 0px, 400px 0px, 400px 50px, 300px 50px, 300px 100px, 200px 100px, 200px 150px, 0 150px, 0 100px, 100px 100px, 100px 50px, 200px 50px);
- word-wrap: break-word;
- font: 50px/1 Ahem, sans-serif;
- color: green;
- }
-
- #shape-outline {
- fill: none;
- stroke: blue;
- }
-
- #informative-text {
- position: absolute;
- top: 150px;
- }
-</style>
-</head>
-
-</head>
-<body>
- <div id="shape-inside">XXXX XXXX XXXX</div>
- <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg">
- <polygon points="200,0 400,0 400,50 300,50 300,100 200,100 200,150 0,150 0,100 100,100 100,50 200,50"/>
- </svg>
- <p id="informative-text">
- This test requires the Ahem font. It creates a rectilinear polygonal shape-inside and a
- matching stroked SVG polygon. The content should just fill the shape with solid green.</p>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698