47 lines
716 B
HTML
47 lines
716 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: 100vh;
|
|
}
|
|
|
|
div#blue
|
|
{
|
|
background-color: blue;
|
|
height: 25vh;
|
|
}
|
|
|
|
div#orange
|
|
{
|
|
background-color: orange;
|
|
height: 25vh;
|
|
}
|
|
|
|
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>
|