contain-paint-019.html (580B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Containment Test: Paint containment on table-caption</title> 4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-contain-1/#containment-paint"> 6 <link rel="match" href="../reference/nothing.html"> 7 <meta name=assert content="Paint containment does apply to table-caption elements."> 8 <style> 9 div { 10 display: table-caption; 11 contain: paint; 12 } 13 span { 14 position: absolute; 15 } 16 </style> 17 18 <p>There should be nothing below.</p> 19 <div><span>FAIL</span></div>