1
0
Fork 0
firefox/testing/web-platform/tests/css/css-backgrounds/reference/background-attachment-local-inline-002-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

49 lines
758 B
HTML

<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Reftest reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style>
body
{
height: 50vh;
margin: 0px;
}
div#filler-before
{
height: 125vh;
}
div#blue
{
background-color: blue;
height: 12.5vh;
width: 50vh;
}
div#orange
{
background-color: orange;
height: 12.5vh;
width: 50vh;
}
div#filler-after
{
height: 50vh;
}
</style>
<body onload="window.scroll(0, document.body.offsetHeight);">
<div id="filler-before"></div>
<div id="blue"></div>
<div id="orange"></div>
<div id="filler-after"></div>