diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/css-scroll-snap/scroll-margin-on-anchor.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/css-scroll-snap/scroll-margin-on-anchor.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/css-scroll-snap/scroll-margin-on-anchor.html b/layout/reftests/css-scroll-snap/scroll-margin-on-anchor.html new file mode 100644 index 0000000000..9a86be4070 --- /dev/null +++ b/layout/reftests/css-scroll-snap/scroll-margin-on-anchor.html @@ -0,0 +1,29 @@ +<!-- + This reftest is a test case that scroll-margin value is properly handled when + navigating an anchor node, id="target" in this case, so the content scrolls + to the target element on loading. +--> +<style> +html,body { + overflow: hidden; + margin: 0px; + padding: 0px; +} +.spacer { + height: 2000px; + width: 100%; + padding: 0px; + margin: 0px; +} +#target { + background-color: blue; + width: 100%; + height: 100px; + padding: 0px; + margin: 0px; + scroll-margin: 100px; +} +</style> +<div class="spacer"></div> +<div id="target"></div> +<div class="spacer"></div> |