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-baseline-001.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<html lang=en>
  <meta charset=utf-8>
  <title>CSS-contain test: size containment and baselines</title>
  <meta name=assert content="contain:size does not suppress baseline alignment">
  <link rel="match" href="reference/contain-baseline-ref.html">
<style>
div {
  display: inline-block;
  height: 5px;
  background: blue;
  width: 50px;
  contain: size;
  color: transparent;
  font-size: 100px;
}
</style>
<p>Test passes if there are two, not one, blue lines below.</p>
<div></div><div>a</div>