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

Side by Side Diff: LayoutTests/fast/regions/region-sibling-paint-order-expected.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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link href="resources/region-style.css" rel="stylesheet" type="text/css"/>
5 <style>
6 #region {
7 background-color: gray;
8 width: 100px;
9 height: 100px;
10 }
11 #sibling-of-region {
12 background-color: green;
13 width: 100px;
14 height: 100px;
15 margin-top: -90px;
16 margin-left: 10px;
17 }
18 </style>
19 </head>
20 <body>
21 <div id="region" class="forcedStackingContext"></div>
22 <div id="sibling-of-region" class="forcedStackingContext"></div>
23 <p>This test verifies that if a region appears before a sibling element in D OM order, the region's
24 content paints below the sibling.
25 This test passes if there is no red visible.</p>
26 </body>
27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698