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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-left-expected.html

Issue 2636253002: Handle nested position:sticky elements (Closed)
Patch Set: Rebase Created 3 years, 10 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/nested/sticky-nested-left-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-left-expected.html b/third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-left-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..e957a80498973d0b237745125d79d404ff183040
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/sticky/nested/sticky-nested-left-expected.html
@@ -0,0 +1,62 @@
+<!DOCTYPE html>
+
+<html>
+<head>
+<style>
+ body {
+ margin: 0;
+ }
+
+ .group {
+ position: relative;
+ width: 350px;
+ height: 200px;
+ }
+
+ .container {
+ width: 350px;
+ height: 180px;
+ outline: 2px solid black;
+ }
+
+ .outerBox {
+ position: absolute;
+ background-color: green;
+ width: 200px;
+ height: 180px;
+ }
+
+ .innerBox {
+ position: absolute;
+ background-color: red;
+ width: 100px;
+ height: 180px;
+ }
+</style>
+</head>
+<body>
+ <div class="group">
+ <div class="container">
+ <div class="outerBox" style="left: 50px;">
+ <div class="innerBox" style="left: 0;"></div>
+ </div>
+ </div>
+ </div>
+
+ <div class="group">
+ <div class="container">
+ <div class="outerBox" style="left: 50px;">
+ <div class="innerBox" style="left: 50px;"></div>
+ </div>
+ </div>
+ </div>
+
+ <div class="group">
+ <div class="container">
+ <div class="outerBox" style="left: 50px;">
+ <div class="innerBox" style="left: 100px;"></div>
+ </div>
+ </div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698