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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-deep-expected.html

Issue 2636253002: Handle nested position:sticky elements (Closed)
Patch Set: Rebase Created 3 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
3 <html>
4 <head>
5 <style>
6 body {
7 margin: 0;
8 }
9
10 .container {
11 width: 200px;
12 height: 500px;
13 outline: 2px solid black;
14 }
15
16 .first {
17 position: absolute;
18 height: 500px;
19 width: 200px;
20 background-color: red;
21 }
22
23 .second {
24 position: absolute;
25 height: 400px;
26 width: 200px;
27 background-color: blue;
28 }
29
30 .third {
31 position: absolute;
32 height: 300px;
33 width: 200px;
34 background-color: pink;
35 }
36
37 .fourth {
38 position: absolute;
39 height: 200px;
40 width: 200px;
41 background-color: yellow;
42 }
43
44 .fifth {
45 position: absolute;
46 height: 100px;
47 width: 200px;
48 background-color: green;
49 }
50 </style>
51 </head>
52 <body>
53 <div class="container">
54 <div class="first">
55 <div class="second">
56 <div class="third">
57 <div class="fourth">
58 <div class="fifth"></div>
59 </div>
60 </div>
61 </div>
62 </div>
63 </div>
64 </body>
65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698