Index: LayoutTests/fast/shapes/shape-inside/shape-inside-percentage.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-percentage.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-percentage.html |
deleted file mode 100644 |
index 8ffa113ddfcff853640d6291b6245574b67eabdc..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-percentage.html |
+++ /dev/null |
@@ -1,38 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- #container { |
- font: 20px Ahem, sans-serif; |
- line-height: 20px; |
- border: 2px solid blue; |
- position: relative; |
- width: 200px; |
- height: 200px; |
- margin-bottom: 60px; |
- } |
- #shape-inside { |
- shape-inside: polygon(25% 0, 75% 0, 75% 25%, 25% 25%); |
- height: 100%; |
- width: 100%; |
- } |
- #border { |
- position: absolute; |
- left: 48px; |
- width: 100px; |
- height: 50px; |
- border: 2px solid green; |
- } |
-</style> |
-</head> |
-<body> |
- <div id="container"> |
- <div id="border"></div> |
- <div id="shape-inside"> |
- X X X X X X X X X X X X X X X X |
- </div> |
- </div> |
- <p>Requires Ahem font. The content should start inside the green rectangle (shape-inside) and the overflow should be pushed below the content box (content-box's margin is blue). <br/> |
- <p>Bug <a href="http://webkit.org/b/114526">114526</a>: [CSS Exclusions] shape-inside overflow should be pushed to the outside of the content box</p> |
-</body> |
-</html> |