Index: LayoutTests/fast/shapes/shape-inside/shape-inside-partial-fill-002.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-partial-fill-002.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-partial-fill-002.html |
deleted file mode 100644 |
index c3c64d5e0b174dc451951c23c4f192cf6afe241d..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-partial-fill-002.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- .shape-inside { |
- position: relative; |
- width: 150px; |
- height: 100px; |
- shape-inside: polygon(0px 0px, 150px 0px, 150px 100px, 100px 100px, 100px 50px, 50px 50px, 50px 100px, 0px 100px); |
- font: 50px/1 Ahem, sans-serif; |
- color: green; |
- } |
- |
- .shape-outline { |
- position: absolute; |
- top: 0px; |
- left: 0px; |
- width: 150px; |
- height: 100px; |
- } |
-</style> |
-</head> |
-<body> |
- <p>The green rectangles should appear within the blue outline.</p> |
- <div class="shape-inside"> |
- <svg class="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
- <polygon stroke="blue" fill="none" points="0,0 150,0 150,100 100,100 100,50 50,50 50,100 0,100"/> |
- </svg> |
- XXX X |
- </div> |
- <p>This is the same test as the one above, except that the shape-inside's content has trailing whitespace.</p> |
- <div class="shape-inside"> |
- <svg class="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
- <polygon stroke="blue" fill="none" points="0,0 150,0 150,100 100,100 100,50 50,50 50,100 0,100"/> |
- </svg> |
- XXX X |
- |
- </div> |
-</body> |
-</html> |