Index: LayoutTests/fast/shapes/shape-inside/shape-inside-circle-padding.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-circle-padding.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-circle-padding.html |
deleted file mode 100644 |
index 7669d291c10a29bb5ac0f3363f0c646b66146a8f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-circle-padding.html |
+++ /dev/null |
@@ -1,36 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- /* This test is the same as circle-shape-inside except that the circle's radius is 150px instead |
- of 100px and shape-padding 50px has been specified. The expected result is the same as the original test. |
- */ |
- #shape-inside { |
- position: relative; |
- width: 400px; |
- height: 400px; |
- shape-inside: circle(150px at 200px 200px); |
- shape-padding: 50px; |
- font: 141.42px/1 Ahem, sans-serif; |
- |
- color: green; |
- } |
- |
- #shape-outline { |
- position: absolute; |
- top: 0px; |
- left: 0px; |
- width: 400px; |
- height: 400px; |
- } |
-</style> |
-</head> |
-<body> |
- <div id="shape-inside"> |
- <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
- <circle cx="200" cy="200" r="100" stroke="blue" fill="none"/> |
- </svg> |
- X |
- </div> |
-</body> |
-</html> |