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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl.html

Issue 1308273010: Adapt and reland old position sticky implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make sticky vertical ref tests expectations not dependent on font size. Created 4 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-horizontally-overconstrained-rtl.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl.html b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl.html
new file mode 100644
index 0000000000000000000000000000000000000000..95f403d5eedc18e031a7b4ebd72d0620d7672a9f
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/sticky/sticky-horizontally-overconstrained-rtl.html
@@ -0,0 +1,84 @@
+<!DOCTYPE html>
+<script>
+if (window.internals) {
+ internals.settings.setCSSStickyPositionEnabled(true);
+}
+</script>
+
+<html>
+<head>
+<style>
+ #overflow {
+ width: 600px;
+ height: 450px;
+ overflow: hidden; /* Still scrollable with JS */
+ border: 1px solid black;
+ }
+
+ .group {
+ position: relative;
+ width: 500px;
+ height: 150px;
+ }
+
+ .container {
+ width: 400px;
+ height: 130px;
+ outline: 2px solid black;
+ direction: rtl;
+ }
+
+ .box {
+ width: 200px;
+ height: 130px;
+ }
+
+ .sticky {
+ position: sticky;
+ left: 600px;
+ right: 100px;
+ background-color: green;
+ }
+
+ .indicator {
+ position: absolute;
+ top: 0;
+ left: 0;
+ background-color: red;
+ }
+</style>
+<script>
+ function doTest()
+ {
+ document.getElementById('overflow').scrollLeft = 100;
+ }
+ window.addEventListener('load', doTest, false);
+</script>
+</head>
+<body>
+This test checks that left offset is ignored with overconstrained sticky positioning and rtl text direction.
+There should be no red.
+ <div id="overflow">
+ <div class="group" style="left: 400px">
+ <div class="indicator box" style="left: 0;"></div>
+ <div class="container">
+ <div class="sticky box"></div>
+ </div>
+ </div>
+
+ <div class="group" style="left: 300px">
+ <div class="indicator box" style="left: 100px;"></div>
+ <div class="container">
+ <div class="sticky box"></div>
+ </div>
+ </div>
+
+ <div class="group" style="left: 200px">
+ <div class="indicator box" style="left: 200px;"></div>
+ <div class="container">
+ <div class="sticky box"></div>
+ </div>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698