Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/contain-layout-ink-overflow-019.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<meta name="fuzzy" content="1;0-50">
<title>CSS Test: 'contain: layout' on element that overflows and its parent has 'overflow: scroll'</title>
<link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="match" href="reference/contain-layout-ink-overflow-019-ref.html">
<meta content="This test checks that when the contents of an element with 'contain: layout' overflows, its overflowing content must be treated as ink overflow. Such overflowing content therefore can not be reached and can not be accessed by the scrollbars or by the scrolling mechanism of the parent of such element. In this test, the parent has 'overflow: scroll'." name="assert">
<style>
div
{
height: 100px;
width: 100px;
}
/* this means that each and all 4 div's use the same definite height and width */
div#parent-with-overflow-scroll
{
overflow: scroll;
}
div#contain
{
contain: layout;
}
div#pass
{
background-color: green;
}
div#fail
{
background-color: red;
}
</style>
<!--
25px : height of a very tall horizontal scrollbar
+
100px : height of div#fail
=======
125px
-->
<body onload="document.getElementById('parent-with-overflow-scroll').scrollLeft = 100; document.getElementById('parent-with-overflow-scroll').scrollTop = 125;">
<p>Test passes if there is a filled green square <strong>with 2 scroll bars</strong> and if there is <strong>no red</strong>.
<div id="parent-with-overflow-scroll">
<div id="contain">
<div id="pass"></div>
<div id="fail"></div>
</div>
</div>