Index: LayoutTests/fast/shapes/shape-inside/shape-inside-ellipse.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-ellipse.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-ellipse.html |
deleted file mode 100644 |
index f22c699bcec53aa6ed8c40a3cc86d0347a5864e3..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-ellipse.html |
+++ /dev/null |
@@ -1,37 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- /* The Ahem font's size is equal to a little less than the size of the largest square that will |
- fit within the ellipse. Solving the ellipse equation when x = y, produces the size of the |
- square: 2 * rx * ry / sqrt(rx^2 + ry^2). For rx=200 and ry=100, that's 178.885. To eliminate |
- the impact of subpixel layout on the square's size (but not it's origin), we've reduced its |
- size to 178. |
- */ |
- #shape-inside { |
- position: relative; |
- width: 500px; |
- height: 500px; |
- shape-inside: ellipse(200px 100px at 220px 220px); |
- font: 178px/1 Ahem, sans-serif; |
- color: green; |
- } |
- |
- #shape-outline { |
- position: absolute; |
- top: 0px; |
- left: 0px; |
- width: 500px; |
- height: 500px; |
- } |
-</style> |
-</head> |
-<body> |
- <div id="shape-inside"> |
- <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
- <ellipse cx="220" cy="220" rx="200" ry="100" stroke="blue" fill="none"/> |
- </svg> |
- X |
- </div> |
-</body> |
-</html> |