Index: LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-002.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-002.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-002.html |
deleted file mode 100644 |
index 7725cefe2e1bf8377e3a6dcf0fb58079a3520065..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-fit-002.html |
+++ /dev/null |
@@ -1,47 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<!-- |
-In this test the shape-inside shape is a rounded rectangle configured as a circle with radius of 100px. |
-The shape-inside element contains a single square Ahem font character that just fits wthin the circle. |
-That means that the character's size is sqrt(2)*100px, which is 141.41356px. |
---> |
-<style> |
-#shape-container { |
- position: relative; |
- display: inline-block; |
- width: 200px; |
- height: 200px; |
- margin: 10px; |
-} |
- |
-#shape-background { |
- position: absolute; |
- top: 0px; |
- left: 0px; |
- width: 200px; |
- height: 200px; |
- border-radius: 100px / 100px; |
- background-color: rgb(200,200,200); |
-} |
- |
-#shape-inside { |
- position: absolute; |
- top: 0px; |
- left: 0px; |
- width: 200px; |
- height: 200px; |
- shape-inside: rectangle(0px, 0px, 200px, 200px, 100px, 100px); |
- font: 141.421356px/1 Ahem, sans-serif; |
- color: green; |
-} |
-</style> |
-</head> |
-<body> |
-<p>The green rectangle should appear within the grey circle.</p> |
-<div id="shape-container"> |
- <div id="shape-background"></div> |
- <div id="shape-inside">X</div> |
-</div> |
-</body> |
-</html> |