pseudo-container-crash.html (363B)
1 <!doctype html> 2 <title>CSS Container Queries Test: No crash when ::after is a container</title> 3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#query-container"> 4 <link rel="help" href="https://crbug.com/1225381"> 5 <style> 6 div::after { 7 container-type: size; 8 content: ''; 9 display: block; 10 } 11 </style> 12 <div> 13 PASS if no crash 14 </div>