Index: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-002.html |
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-002.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-002.html |
deleted file mode 100644 |
index 2e03c5cd9fea5e79ac6d41d88c45137d60c07469..0000000000000000000000000000000000000000 |
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-002.html |
+++ /dev/null |
@@ -1,53 +0,0 @@ |
-<!DOCTYPE html> |
-<title>CSS Test: shape-outside on floats with a positive bottom margin</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 a positive margin on the logical bottom side of a float does not affect inline content wrapping around the shape."> |
-<link rel="match" href="shape-outside-floats-margin-001-ref.html"> |
-<meta name="flags" content="ahem"> |
-<head> |
-<style> |
-.container { |
- font: 20px/1 Ahem, sans-serif; |
- line-height: 20px; |
- 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; |
- margin-bottom: 20px; |
- background-color: green; |
-} |
- |
-#float-right { |
- float: right; |
- width: 100px; |
- height: 20px; |
- shape-outside: rectangle(0, 0, 100%, 100%) content-box; |
- margin-bottom: 20px; |
- background-color: green; |
-} |
-</style> |
- |
-<body> |
- <p>This should display two green rectangles. You should not see any red.</p> |
- <div class="container"> |
- <div id="float-left"> |
- </div> |
- XXXXX |
- </div> |
- <div class="container"> |
- <div id="float-right"> |
- </div> |
- XXXXX |
- </div> |
-</body> |