Index: LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions.html |
deleted file mode 100644 |
index b18230ec8406b5604664d642ce3ba94ca8ba34e4..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-overflow-fixed-dimensions.html |
+++ /dev/null |
@@ -1,43 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script> |
- if (window.internals) |
- window.internals.settings.setCSSShapesEnabled(true); |
-</script> |
-<style> |
-#container { |
- font: 20px Ahem, sans-serif; |
- line-height: 20px; |
- position: relative; |
-} |
-#shape-inside { |
- width: 200px; |
- height: 200px; |
- background-color: green; |
- border-bottom: 30px solid yellow; |
- padding-top: 15px; |
- padding-bottom: 10px; |
- shape-inside: polygon(50px 0px, 150px 0px, 150px 50px, 50px 50px); |
-} |
-#border { |
- position: absolute; |
- margin-top: 13px; |
- left: 48px; |
- width: 100px; |
- height: 40px; |
- border: 2px solid blue; |
-} |
-</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 inline content should start inside the green rectangle (shape-inside) and the overflow should be pushed below the content box. The overflow should start 10px above the yellow bottom border. <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> |