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

Unified Diff: LayoutTests/fast/css/sticky/sticky-as-positioning-container.html

Issue 1212893005: Add position: sticky as supported position value when CSSStickyPosition is enabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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: LayoutTests/fast/css/sticky/sticky-as-positioning-container.html
diff --git a/LayoutTests/fast/css/sticky/sticky-as-positioning-container.html b/LayoutTests/fast/css/sticky/sticky-as-positioning-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..390db46ba557b66d9ab28860be5b807f3cd932f1
--- /dev/null
+++ b/LayoutTests/fast/css/sticky/sticky-as-positioning-container.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style type="text/css">
+div {
+ height: 100px;
+ width: 100px;
+}
+.spacer {
+ background-color: red;
+}
+.sticky {
+ background-color: green;
+ position: sticky;
+}
+.absoffset {
+ background-color: green;
+ position: absolute;
+ top: -100px;
+}
+</style>
+</head>
+<body>
+ <div class="spacer"></div>
+ <div class="sticky">
+ <div class="absoffset"></div>
+ </div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698