Index: LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-003.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-003.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-003.html |
deleted file mode 100644 |
index bf66e0fd2c0314a192ab1be4ec6deb6520c41be1..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-rectilinear-polygon-003.html |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<!-- |
-Test test creates a rectilinear polygon with this shape: |
- XXXXXXXX |
- XXXX |
- XXXXXXXX |
---> |
- |
-<style id="stylesheet"> |
- #shape-inside, #shape-outline { |
- position: absolute; |
- top: 0; |
- left: 0; |
- width: 400px; |
- height: 200px; |
- margin: 0; |
- } |
- |
- #shape-inside { |
- shape-inside: polygon(0 0px, 400px 0px, 400px 50px, 300px 50px, 300px 100px, 400px 100px, 400px 150px, 0 150px, 0 100px, 100px 100px, 100px 50px, 0px 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">XXXXXXXX XXXX XXXXXXXX</div> |
- <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
- <polygon points="0,0 400,0 400,50 300,50 300,100 400,100 400,150 0,150 0,100 100,100 100,50 0,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> |
- |