diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-position/sticky/position-sticky-change-top-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-position/sticky/position-sticky-change-top-ref.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-position/sticky/position-sticky-change-top-ref.html b/testing/web-platform/tests/css/css-position/sticky/position-sticky-change-top-ref.html new file mode 100644 index 0000000000..8ccc1548ef --- /dev/null +++ b/testing/web-platform/tests/css/css-position/sticky/position-sticky-change-top-ref.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<title>Reference for sticky elements should invalidate when top/left/bottom/right changes</title> + +<style> +.box { + /* Triggers promotion without creating stacking context. */ + backface-visibility: hidden; + background: green; + position: sticky; + top: 200px; + width: 100px; + height: 100px; +} + +.spacer { + height: 200vh; +} +</style> + +<div class="box"></div> +<div class="spacer"></div> |