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

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

Issue 2788053002: Fix sticky bottom is not applied with both sticky position (Closed)
Patch Set: use position:fixed instead of sticky on the expected result 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 if (window.internals) { 3 if (window.internals) {
4 internals.settings.setCSSStickyPositionEnabled(true); 4 internals.settings.setCSSStickyPositionEnabled(true);
5 } 5 }
6 </script> 6 </script>
7 7
8 <html> 8 <html>
9 <head> 9 <head>
10 <style> 10 <style>
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 <body> 65 <body>
66 <div class="container"> 66 <div class="container">
67 <div class="sticky box"></div> 67 <div class="sticky box"></div>
68 </div> 68 </div>
69 <div class="vertical container"> 69 <div class="vertical container">
70 <div class="sticky box"></div> 70 <div class="sticky box"></div>
71 </div> 71 </div>
72 72
73 </body> 73 </body>
74 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698