Index: LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html |
deleted file mode 100644 |
index cb662c44b08fda3c7c937bcef1cdc2d95e05b454..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-bottom-edge.html |
+++ /dev/null |
@@ -1,46 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
-.box { |
- width: 450px; |
- height: 100px; |
- line-height: 20px; |
- outline: 2px solid green; |
-} |
- |
-.polygon { |
- -webkit-shape-inside: polygon(25px 25px, 425px 25px, 425px 75px, 25px 75px); |
-} |
- |
-.details { |
- padding-top: 15px; |
- font-style: italic; |
-} |
-</style> |
-</head> |
- |
-<body> |
- <div class="box polygon"> |
- <p style="padding-top: 55px;">Content1</p> |
- </div> |
-<p class="details">There is a 400x50px shape-inside polygon inside the green box.<br/>The Content1 text line's bottom equals to the shape-inside's polygon bottom boundary, so it should fit in the shape-inside.</p> |
-<hr> |
- |
-<div class="box polygon"> |
- <p style="padding-top: 60px;">Content2</p> |
-</div> |
-<p class="details">There is a 400x50px shape-inside polygon inside the green box.<br/>The Content2 text line overlaps with the shape-inside's polygon bottom boundary, so the Content2 should be pushed below the content box.</p> |
-<hr> |
- |
-<div class="box polygon"> |
- <p style="padding-top: 76px;">Content3</p> |
-</div> |
-<p class="details">There is a 400x50px shape-inside polygon inside the green box.<br/>The Content3 text line starts after the shape-inside's polygon bottom boundary, so the Content3 should be pushed below the content box.</p> |
-<hr> |
- |
-<p>Based on a recent change on the <a href="http://dev.w3.org/csswg/css-exclusions/#shape-inside-property">exclusions specification</a>. The 'shape-inside' property adds an exclusion area to the element's wrapping context. |
-This modifies the normal rectangular shape of the content area to a possibly non-rectangular wrapping area. The exclusion area added is defined by subtracting the shape from the element's content area.</p> |
-<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> |