Index: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-001.html |
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-001.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-001.html |
deleted file mode 100644 |
index 98ad175d007ae61f9f0d92491764207f48fbcd3b..0000000000000000000000000000000000000000 |
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-padding-001.html |
+++ /dev/null |
@@ -1,52 +0,0 @@ |
-<!DOCTYPE html> |
-<title>CSS Test: shape-outside on floats with a positive top padding</title> |
-<link rel="author" title="Adobe" href="http://html.adobe.com/"> |
-<link rel="author" title="Bem Jones-Bey" href="mailto:bjonesbe@adobe.com"> |
-<link rel="help" href="http://dev.w3.org/csswg/css-shapes-1/#relation-to-box-model-and-float-behavior"> |
-<meta name="assert" content="This tests if padding on the logical top of the float is properly ignored if the shape does not extend into the padding."> |
-<link rel="match" href="shape-outside-floats-padding-001-ref.html"> |
-<meta name="flags" content="ahem"> |
-<head> |
-<style> |
-.container { |
- font: 20px/1 Ahem, sans-serif; |
- width: 100px; |
- height: 40px; |
- border: 1px solid black; |
- color: green; |
- display: inline-block; |
- background-color: red; |
-} |
- |
-#float-left { |
- float: left; |
- width: 100px; |
- height: 20px; |
- shape-outside: rectangle(0, 0, 100%, 100%) content-box; |
- padding-top: 20px; |
-} |
- |
-#float-right { |
- float: right; |
- width: 100px; |
- height: 20px; |
- shape-outside: rectangle(0, 0, 100%, 100%) content-box; |
- padding-top: 20px; |
-} |
-</style> |
- |
-<body> |
- <p>This should display two green rectangles. You should not see any red.</p> |
- <div class="container"> |
- <div id="float-left"> |
- XXXXX |
- </div> |
- XXXXX |
- </div> |
- <div class="container"> |
- <div id="float-right"> |
- XXXXX |
- </div> |
- XXXXX |
- </div> |
-</body> |