Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/container-queries/chrome-legacy-skip-recalc.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Container Queries Test: Chrome legacy layout skipping style recalc</title>
<link rel="match" href="/css/reference/pass_if_pass_below.html">
<style>
#container {
container-type: inline-size;
}
#multicol {
column-count: 1;
}
@supports not (container-type: inline-size) {
#container { display: none }
}
</style>
<p>Test passes if there is the word "PASS" below.</p>
<div id="container"><span>PASS</span></div>
<span id="multicol"><table></table></span>