diff options
Diffstat (limited to 'layout/reftests/async-scrolling/position-fixed-inside-sticky-3-ref.html')
-rw-r--r-- | layout/reftests/async-scrolling/position-fixed-inside-sticky-3-ref.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/async-scrolling/position-fixed-inside-sticky-3-ref.html b/layout/reftests/async-scrolling/position-fixed-inside-sticky-3-ref.html new file mode 100644 index 0000000000..88f0577aab --- /dev/null +++ b/layout/reftests/async-scrolling/position-fixed-inside-sticky-3-ref.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<html> +<style> +body { + height: 4000px; + margin: 0; + overflow: hidden; +} +#sticky { + position: sticky; + top: 0; + height: 60px; + background-color: blue; +} +</style> +<body> +<div id="sticky"></div> +</body></html> |