Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Unified Diff: LayoutTests/fast/regions/region-sibling-paint-order.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698