Index: LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-017.html |
diff --git a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-017.html b/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-017.html |
deleted file mode 100644 |
index b3268783a8f9ad983d2100af6b723e8cbaa118c5..0000000000000000000000000000000000000000 |
--- a/LayoutTests/csswg/contributors/adobe/submitted/shapes/shape-outside/shape-outside-floats-margin-017.html |
+++ /dev/null |
@@ -1,51 +0,0 @@ |
-<!DOCTYPE html> |
-<title>CSS Test: shape-outside on floats with a negative margin, vertical writing mode</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 negative margin on the opposite logical side as the float direction (eg: margin on logical right of a left float) properly clips the shape."> |
-<link rel="match" href="shape-outside-floats-margin-006-ref.html"> |
-<meta name="flags" content="ahem"> |
-<head> |
-<style> |
-.container { |
- font: 20px/1 Ahem, sans-serif; |
- line-height: 20px; |
- width: 20px; |
- height: 100px; |
- border: 1px solid black; |
- color: green; |
- display: inline-block; |
- -webkit-writing-mode: vertical-rl; |
-} |
- |
-#float-left { |
- float: left; |
- width: 20px; |
- height: 100px; |
- shape-outside: rectangle(0, 0, 100%, 20%) content-box; |
- margin-bottom: -20px; |
-} |
- |
-#float-right { |
- float: right; |
- width: 20px; |
- height: 100px; |
- shape-outside: rectangle(0, 80%, 100%, 20%) content-box; |
- margin-top: -20px; |
-} |
-</style> |
- |
-<body> |
- <p>This should display two vertical green bars, with white squares on opposite sides.</p> |
- <div class="container"> |
- <div id="float-left"> |
- </div> |
- XXXX |
- </div> |
- <div class="container" style="text-align: right"> |
- <div id="float-right"> |
- </div> |
- XXXX |
- </div> |
-</body> |