chrome-legacy-skip-recalc.html (637B)
1 <!doctype html> 2 <title>CSS Container Queries Test: Chrome legacy layout skipping style recalc</title> 3 <link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container"> 4 <link rel="help" href="https://crbug.com/1288879"> 5 <link rel="match" href="/css/reference/pass_if_pass_below.html"> 6 <style> 7 #container { 8 container-type: inline-size; 9 } 10 #multicol { 11 column-count: 1; 12 } 13 14 @supports not (container-type: inline-size) { 15 #container { display: none } 16 } 17 </style> 18 <p>Test passes if there is the word "PASS" below.</p> 19 <div id="container"><span>PASS</span></div> 20 <span id="multicol"><table></table></span>