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

Unified 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, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-3.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-3.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-3.html
new file mode 100644
index 0000000000000000000000000000000000000000..d1e01b7cdd2c03ec37f82ef9a7bb913c56633613
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-3.html
@@ -0,0 +1,91 @@
+<!DOCTYPE html>
+<script>
+if (window.internals) {
+ internals.settings.setCSSStickyPositionEnabled(true);
+}
+</script>
+
+<html>
+<head>
+<style>
+ body {
+ margin: 0;
+ width: 5000px;
+ overflow: hidden; /* hide scrollbars */
+ }
+
+ .container {
+ position: absolute;
+ width: 5000px;
+ height: 180px;
+ top: 100px;
+ outline: 2px solid black;
+ }
+
+ .vertical.container {
+ top: 0px;
+ left: 100px;
+ width: 180px;
+ height: 5000px;
+ }
+
+ .box {
+ width: 300px;
+ height: 180px;
+ }
+
+ .vertical .box {
+ width: 180px;
+ height: 300px;
+ }
+
+ .sticky {
+ position: sticky;
+ left: 50px;
+ right: 50px;
+ background-color: green;
+ }
+
+ .vertical .sticky {
+ left: 0;
+ top: 50px;
+ bottom: 50px;
+ background-color: blue;
+ opacity: 0.75;
+ }
+ .space {
+ width:2000px;
+ height:100%;
+ background-color: grey;
+ opacity: 0.1;
+ }
+ .vertical .space {
+ height:2000px;
+ background-color: grey;
+ opacity: 0.1;
+ }
+ .inline {
+ display: inline-block;
+ }
+</style>
+<script>
+ function doTest()
+ {
+ window.scrollTo(0, 3000);
+ }
+ window.addEventListener('load', doTest, false);
+</script>
+</head>
+<body>
+ <div class="container">
+ <div class="space inline"></div>
+ <div class="sticky box inline"></div>
+ </div>
+ <div class="vertical container">
+ <div class="vertical space"></div>
+ <div class="sticky box"></div>
+ </div>
+
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698