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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-3.html

Issue 2788053002: Fix sticky bottom is not applied with both sticky position (Closed)
Patch Set: Created 3 years, 8 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 <script>
3 if (window.internals) {
4 internals.settings.setCSSStickyPositionEnabled(true);
5 }
6 </script>
7
8 <html>
9 <head>
10 <style>
11 body {
12 margin: 0;
13 width: 5000px;
14 overflow: hidden; /* hide scrollbars */
15 }
16
17 .container {
18 position: absolute;
19 width: 5000px;
20 height: 180px;
21 top: 100px;
22 outline: 2px solid black;
23 }
24
25 .vertical.container {
26 top: 0px;
27 left: 100px;
28 width: 180px;
29 height: 5000px;
30 }
31
32 .box {
33 width: 300px;
34 height: 180px;
35 }
36
37 .vertical .box {
38 width: 180px;
39 height: 300px;
40 }
41
42 .sticky {
43 position: sticky;
44 left: 50px;
45 right: 50px;
46 background-color: green;
47 }
48
49 .vertical .sticky {
50 left: 0;
51 top: 50px;
52 bottom: 50px;
53 background-color: blue;
54 opacity: 0.75;
55 }
56 .space {
57 width:2000px;
58 height:100%;
59 background-color: grey;
60 opacity: 0.1;
61 }
62 .vertical .space {
63 height:2000px;
64 background-color: grey;
65 opacity: 0.1;
66 }
67 .inline {
68 display: inline-block;
69 }
70 </style>
71 <script>
72 function doTest()
73 {
74 window.scrollTo(0, 3000);
75 }
76 window.addEventListener('load', doTest, false);
77 </script>
78 </head>
79 <body>
80 <div class="container">
81 <div class="space inline"></div>
82 <div class="sticky box inline"></div>
83 </div>
84 <div class="vertical container">
85 <div class="vertical space"></div>
86 <div class="sticky box"></div>
87 </div>
88
89 </body>
90 </html>
91
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698