1
0
Fork 0
firefox/testing/web-platform/tests/css/css-position/sticky/position-sticky-hyperlink-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

37 lines
615 B
HTML

<!DOCTYPE html>
<title>Reference for sticky hyperlink should work on high dpi devices</title>
<style>
body {
margin: 0;
}
.scroller {
overflow: scroll;
width: 200px;
height: 200px;
}
.positioned {
position: relative;
top: 100px;
will-change: transform;
}
.spacer {
height: 700px;
}
</style>
<script>
window.addEventListener('load', function() {
document.querySelector('.scroller').scrollTop = 100;
});
</script>
<div>You should see a sticky link at the top of the scrollable area.</div>
<div class='scroller'>
<a href='#' class='positioned'>Link</a>
<div class='spacer'></div>
</div>