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

Unified Diff: LayoutTests/fast/css/sticky/sticky-stacking-context.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: Merge, convert pixel to ref tests, and address comments. Created 5 years, 5 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-stacking-context.html
diff --git a/LayoutTests/fast/css/sticky/sticky-stacking-context.html b/LayoutTests/fast/css/sticky/sticky-stacking-context.html
new file mode 100644
index 0000000000000000000000000000000000000000..46b159f097ee6f34d5fe7d335be5dd5010ebee7d
--- /dev/null
+++ b/LayoutTests/fast/css/sticky/sticky-stacking-context.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<script>
+if (window.internals) {
+ internals.settings.setCSSStickyPositionEnabled(true);
+}
+</script>
+<style type="text/css">
+div {
+ height: 100px;
+ width: 100px;
+}
+.sticky {
+ background-color: green;
+ position: sticky;
+}
+.red {
+ background-color: red;
+ margin-top: -100px;
+}
+</style>
+<!--
+Tests that the sticky node will be popped out into a stacking context on top of the node which follows it. You should
+see no red boxes as the green sticky div should pop on top of the red div placed under it.
+-->
+<div class="sticky"></div>
+<div class="red"></div>

Powered by Google App Engine
This is Rietveld 408576698