Index: LayoutTests/fast/shapes/shape-inside/shape-inside-empty.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-empty.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-empty.html |
deleted file mode 100644 |
index 2207aa1ae68baefaf6504e3bcd4546d5f3609fef..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-empty.html |
+++ /dev/null |
@@ -1,58 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- #rectangles p { |
- width: 800px; |
- height: 40px; |
- line-height: 20px; |
- margin-top: 50px; |
- background-color: green; |
- } |
- |
- #shape-inside-circle-radius0 { |
- shape-inside: circle(0px at 0px 0px); |
- } |
- |
- #shape-inside-ellipse-radiusX0 { |
- shape-inside: ellipse(0px 1em at 0px 0px); |
- } |
- |
- #shape-inside-ellipse-radiusY0 { |
- shape-inside: ellipse(1em 0px at 0px 0px); |
- } |
- |
- #shape-inside-polygon-1vertex { |
- shape-inside: polygon(0px 0px); |
- } |
- |
- #shape-inside-polygon-2vertices { |
- shape-inside: polygon(0px 0px, 1em 0px); |
- } |
-</style> |
-</head> |
-<body> |
-<div id="rectangles"> |
- <p id="shape-inside-circle-radius0" style="margin-top: 0px;"> |
- This text should be pushed down below the green rectangle. (There is a circle(0px at 0px 0px) shape-inside CSS property on the green rectangle.) |
- </p> |
- <p id="shape-inside-ellipse-radiusX0"> |
- This text should be pushed down below the green rectangle. (There is an ellipse(0px 1em at 0px 0px) shape-inside CSS property on the green rectangle.) |
- </p> |
- <p id="shape-inside-ellipse-radiusY0"> |
- This text should be pushed down below the green rectangle. (There is an ellipse(1em 0px at 0px 0px) shape-inside CSS property on the green rectangle.) |
- </p> |
- <p id="shape-inside-polygon-1vertex"> |
- This text should be pushed down below the green rectangle. (There is a polygon(0px 0px) shape-inside CSS property on the green rectangle.) |
- </p> |
- <p id="shape-inside-polygon-2vertices"> |
- This text should be pushed down below the green rectangle. (There is a polygon(0px 0px, 1em 0px) shape-inside CSS property on the green rectangle.) |
- </p> |
-</div> |
-<p style="margin-top: 50px;"> |
- A dimension of every shape-inside on this page is defined to 0. Based on the CSS Exclusions specification: The 'shape-inside' property adds one or more exclusion areas 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 areas are defined by subtracting the shape from the element's content area.<br/> |
- Every text on this page should be pushed down below its green rectangle. |
-</p> |
-</body> |
-</html> |