Index: LayoutTests/fast/regions/region-sibling-paint-order.html |
diff --git a/LayoutTests/fast/regions/region-sibling-paint-order.html b/LayoutTests/fast/regions/region-sibling-paint-order.html |
deleted file mode 100644 |
index 72fe631f7cf6977676309309f457547be002076c..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/region-sibling-paint-order.html |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
- <link href="resources/region-style.css" rel="stylesheet" type="text/css"/> |
- <style> |
- /* |
- This element should not be visible because the region's content should paint under the |
- region's sibling. |
- */ |
- #content-for-region { |
- background-color: red; |
- -webkit-flow-into: flow; |
- width: 50px; |
- height: 50px; |
- margin-left: 50px; |
- margin-top: 50px; |
- } |
- #region { |
- background-color: gray; |
- -webkit-flow-from: flow; |
- width: 100px; |
- height: 100px; |
- } |
- #sibling-of-region { |
- background-color: green; |
- width: 100px; |
- height: 100px; |
- margin-top: -90px; |
- margin-left: 10px; |
- } |
- </style> |
-</head> |
-<body> |
- <div id="content-for-region"></div> |
- <div id="region"></div> |
- <div id="sibling-of-region" class="forcedStackingContext"></div> |
- <p>This test verifies that if a region appears before a sibling element in DOM order, the region's |
- content paints below the sibling. |
- This test passes if there is no red visible.</p> |
-</body> |
-</html> |