1
0
Fork 0
firefox/testing/web-platform/tests/css/css-overflow/scrollbar-gutter-scroll-into-view-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

30 lines
No EOL
555 B
HTML

<!doctype html>
<title>CSS Test Reference: scrollIntoView with scrollbar gutter on root frame viewport</title>
<style>
:root {
scrollbar-gutter: stable both-edges;
writing-mode: vertical-lr;
overflow: hidden;
}
body {
margin: 0;
}
#target {
width: 100px;
height: 100px;
border: 4px solid black;
position: absolute;
left: 0;
top: 0px;
background-color: lightgreen;=
}
#bg {
background-color: khaki;
width: 200vw;
height: 400vh;
}
</style>
<div id="bg"></div>
<div id="target"></div>