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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-bottom-right-constrained-expected.html

Issue 2788053002: Fix sticky bottom is not applied with both sticky position (Closed)
Patch Set: Test cases modified. 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-bottom-right-constrained-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-bottom-right-constrained-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-bottom-right-constrained-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..e43a8ccc0aec7dbeb31d625c936e887bc904c58b
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-both-sides-bottom-right-constrained-expected.html
@@ -0,0 +1,79 @@
+<!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 {
+ position: absolute;
+ top: 0px;
+ left: 100px;
+ width: 180px;
+ height: 5000px;
+ outline: 2px solid black;
+ }
+
+ .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="vertical_sticky vertical_box"></div>
+ </div>
+
+</body>
+</html>
+

Powered by Google App Engine
This is Rietveld 408576698