Index: LayoutTests/fast/shapes/shape-inside/shape-inside-offset-block-children.html |
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-offset-block-children.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-offset-block-children.html |
deleted file mode 100644 |
index 3aea329fb4c5bbe0b0d2e5aeaec3d732cf6e378b..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-offset-block-children.html |
+++ /dev/null |
@@ -1,47 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style id='stylesheet'> |
-.shape-inside { |
- font: 50px/1 Ahem, sans-serif; |
- color: green; |
- float: left; |
-} |
-.horizontal.tb { |
- -webkit-writing-mode: horizontal-tb; |
-} |
-.vertical.rl { |
- -webkit-writing-mode: vertical-rl; |
-} |
-.vertical.lr { |
- -webkit-writing-mode: vertical-lr; |
-} |
-.shape-inside * { |
- padding: 5px 10px 15px 20px; |
-} |
-</style> |
-<script src='../resources/simple-rectangle.js'></script> |
-<script> |
-window.onload = function() { |
- ids = [ |
- 'shape-inside', |
- 'shape-inside-rl', |
- 'shape-inside-lr', |
- 'shape-inside-tb-lr-tb', |
- 'shape-inside-lr-rl-lr' |
- ]; |
- ids.forEach(function(id) { |
- createRectangleTest(id, 'stylesheet', { width: 300, height: 300 }, { x: 100, y: 100, width: 100, height: 100 }, 'px', null); |
- }); |
-} |
-</script> |
-</head> |
-<body> |
-<p>This test ensures that shape-inside takes into account padding on nested child blocks in different writing modes. You should see several green squares within a blue outline. The test requires the Ahem font.</p> |
-<div id='shape-inside' class='shape-inside'><div><div>xxxx</div></div></div> |
-<div id='shape-inside-rl' class='shape-inside vertical lr'><div><div>xxxx</div></div></div> |
-<div id='shape-inside-lr' class='shape-inside vertical rl'><div><div>xxxx</div></div></div> |
-<div id='shape-inside-tb-lr-tb' class='shape-inside'><div class='vertical lr'><div class='horizontal tb'>xxxx</div></div></div> |
-<div id='shape-inside-lr-rl-lr' class='shape-inside vertical rl'><div class='vertical lr'><div class='vertical rl'>xxxx</div></div></div> |
-</body> |
-</html> |