mirror of
https://github.com/servo/servo.git
synced 2025-07-02 13:03:43 +01:00
19 lines
727 B
HTML
19 lines
727 B
HTML
<!doctype html>
|
|
<html lang=en>
|
|
<meta charset=utf-8>
|
|
<title>CSS-contain test: layout containment on non-atomic inlines</title>
|
|
<link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net">
|
|
<meta name=flags content="">
|
|
<meta name=assert content="layout containment does not apply to non atomic inlines">
|
|
<link rel="match" href="reference/contain-size-001-ref.html">
|
|
<link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-layout">
|
|
|
|
<style>
|
|
span {
|
|
contain: layout;
|
|
height: 100vh; /*If layout containment applies, the span becomes a BFC, height applies, and knocks SS off the page */
|
|
}
|
|
</style>
|
|
|
|
<p>This test passes if you can see the word PASS below.
|
|
<div><span>PA</span>SS</div>
|