Index: LayoutTests/fast/shapes/shape-inside/shape-inside-multiple-blocks-vertical.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-multiple-blocks-vertical.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-multiple-blocks-vertical.html |
deleted file mode 100644 |
index f28ac71eb3c488d73632d10d02ec2334233e716f..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-multiple-blocks-vertical.html |
+++ /dev/null |
@@ -1,44 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style> |
- .shape-inside { |
- width: 200px; |
- height: 300px; |
- shape-inside: polygon(10px 15px, 180px 15px, 180px 295px, 10px 295px); |
- position: relative; |
- } |
- .rl { -webkit-writing-mode: vertical-rl; } |
- .lr { -webkit-writing-mode: vertical-lr; } |
- .border { |
- position: absolute; |
- top: 13px; |
- left: 8px; |
- width: 170px; |
- height: 280px; |
- border: 2px solid blue; |
- } |
- p { -webkit-margin-before: 0; } |
-</style> |
-</head> |
-<body> |
- <div class="shape-inside rl"> |
- <div class="border"></div> |
- <div> |
- <p>Paragraph 1. This paragraph should start at the top right corner of the blue |
- rectangle. Its top and bottom edges should be within the blue rectangle. |
- </div> |
- <p>Paragraph 2. This paragraph should be to the left of paragraph 1. Its top |
- and bottom edges should also be within the blue rectangle. |
- </div> |
- <div class="shape-inside lr"> |
- <div class="border"></div> |
- <div> |
- <p>Paragraph 1. This paragraph should start at the top left corner of the blue |
- rectangle. Its top and bottom edges should be within the blue rectangle. |
- </div> |
- <p>Paragraph 2. This paragraph should be to the right of paragraph 1. Its top |
- and bottom edges should also be within the blue rectangle. |
- </div> |
-</body> |
-</html> |