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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-2-expected.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-2-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-2-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-2-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..726fdf59e1edddac65549c56f82277985db98060
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-2-expected.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+
+<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;
+ right: 50px;
+ background-color: green;
+ }
+
+ .vertical .sticky {
+ position: sticky;
+ 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>
+</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