Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-contain/contain-style-baseline-001.html
<!doctype html> <html lang=en> <meta charset=utf-8> <title>CSS-contain test: style containment and baselines</title> <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> <meta name=assert content="contain:style does not suppress baseline alignment"> <link rel="match" href="reference/contain-baseline-ref.html"> <link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-style"> <style> div { display: inline-block; height: 5px; background: blue; width: 50px; contain: style; color: transparent; font-size: 100px; } </style> <p>Test passes if there are two, not one, blue lines below.</p> <div></div><div>a</div>
/css/css-contain/reference/contain-baseline-ref.html
<!doctype html> <html lang=en> <meta charset=utf-8> <title>CSS test reference</title> <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> <style> div { display: inline-block; height: 5px; background: blue; width: 50px; color: transparent; font-size: 100px; } </style> <p>Test passes if there are two, not one, blue lines below.</p> <div></div><div>a</div>