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-size-flexbox-002.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>Tests that scrollbars are handled correctly in a flex item with contains:size</title>
<link rel="match" href="reference/contain-size-flexbox-002-ref.html">
<style>
div > div {
  vertical-align: top;
  display: inline-block;
  contain: size;
  overflow: scroll;
  border: 1px solid;
}
</style>
<p>Test passes if the two lines below look the same.</p>
<div style="display: flex; line-height: 1.0;">
  <div></div>
</div>
<div style="line-height: 1.0;">
  <div></div>
</div>