Index: LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple-expected.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple-expected.html b/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple-expected.html |
deleted file mode 100644 |
index b478a2f544316ed1301615dd23a3757fa489d7c0..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/floats/shape-inside-floats-simple-expected.html |
+++ /dev/null |
@@ -1,40 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="../resources/simple-rectangle.js"></script> |
-<style id="stylesheet"> |
- .container { |
- font: 10px/1 Ahem, sans-serif; |
- } |
- .spacer { |
- width: 50px; |
- height: 50px; |
- background-color: green; |
- } |
- .vertical-lr { |
- -webkit-writing-mode: vertical-lr; |
- } |
- .vertical-rl { |
- -webkit-writing-mode: vertical-rl; |
- } |
-</style> |
-<script> |
- window.onload = function () { |
- var content = 'XXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\n<div class="spacer" style="float:right"></div>\n<div class="spacer" style="float:left"></div>\nXXXXX\nXXXXX\nXXXXX\nXXXXX\nXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX\nXXXXXXXXXXXXXXX'; |
- createRectangleTestResult('base', 'stylesheet', { height: 200, width: 200 }, { x: 25, y: 0, width: 150, height: 150 }, 'px', content); |
- createRectangleTestResult('rl', 'stylesheet', { height: 200, width: 200 }, { x: 0, y: 25, width: 150, height: 150 }, 'px', content); |
- createRectangleTestResult('lr', 'stylesheet', { height: 200, width: 200 }, { x: 0, y: 25, width: 150, height: 150 }, 'px', content); |
- }; |
-</script> |
-</head> |
-<body> |
- <h1>The following tests should all be large black squares that contain two smaller green squares on the same line.</h1> |
- <h2>Standard left right writing mode</h2> |
- <div id="base" class="container"> |
- </div> |
- <h2>Vertical Right Left writing mode</h2> |
- <div id="rl" class="container vertical-rl"></div> |
- <h2>Vertical Left Right writing mode</h2> |
- <div id="lr" class="container vertical-lr"></div> |
-</body> |
-</html> |