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

38 lines
786 B
HTML

<!doctype html>
<meta charset="utf-8">
<title>CSS Overflow: scrollbar-gutter on the root element</title>
<link rel="help" href="https://drafts.csswg.org/css-overflow-4/#scrollbar-gutter-property">
<link rel="match" href="scrollbar-gutter-root-ref.html">
<style>
body,html {
background-color: blue;
margin: 10px;
padding: 10px;
border: 5px solid black;
}
body{
border: 5px solid green;
}
:root {
scrollbar-gutter: stable;
}
p {
background-color: purple;
color: white;
}
div {
position:absolute;
left:-20px;
top:150px;
background-color: green;
width: 100px;
height: 100px;
transform: translateZ(0);
}
</style>
<p id="content">Should not have space around me in the inline axis.</p>
<div></div>