Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/margin-block-end-scroll-area-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Overflow Test: margin-block-end, scrolling area height and scrollTop (complex)</title>
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="match" href="reference/ref-if-there-is-no-red.xht">
<!--
This test is a slightly modified version of the testcase from
Morten Stenshorne coming from
-->
<meta content="" name="flags">
<meta content="This test checks that when the bottom edge of an element's scrolling area is the bottom margin edge of all of the element's descendants' boxes, then the element.scrollTop must reach such bottom edge. In this test, the tested element's scrolling area height must reach the end edge of the margin-bottom of the p element." name="assert">
<style>
div
{
height: 200px;
}
div#test
{
font-size: 100px;
/*
Setting a font-size of 100px is to influence the
margin on the P without setting it directly.
*/
overflow: hidden;
}
div#red
{
background-color: red;
}
div#red > p
{
height: 1px;
}
</style>
<body onload="document.getElementById('test').scrollTop = 200;">
<p>Test passes if there is <strong>no red</strong>.
<div id="test">
<div id="red">
<div id="filler"></div>
<p>
</div>
</div>