contain-size-001.html (627B)
1 <!doctype html> 2 <html lang=en> 3 <meta charset=utf-8> 4 <title>CSS-contain test: size containment on non-atomic inlines</title> 5 <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> 6 <meta name=flags content=""> 7 <meta name=assert content="size containment does not apply to non atomic inlines"> 8 <link rel="match" href="reference/pass_if_pass_below_clipped.html"> 9 <link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-size"> 10 11 <style> 12 div { overflow: hidden; } 13 span { contain: size; } 14 </style> 15 16 <p>Test passes if there is the word "PASS" below.</p> 17 <div><span>PASS</span></div>