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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/scroll-behavior/scroll-into-view-sticky-expected.html

Issue 2488563003: Scroll sticky elements into view. (Closed)
Patch Set: Created 4 years, 1 month 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 <style>
2 .sticky {
3 position: relative;
4 top: 0;
5 margin-bottom: 800px;
6 height: 100px;
7 }
8 </style>
9 <script>
10 onload = function() {
11 target.scrollIntoView();
12 }
13 </script>
14 <body>
15 <div class="sticky" style="background: red;"></div>
16 <div class="sticky" style="background: green;" id="target"></div>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698