1
0
Fork 0
firefox/testing/web-platform/tests/css/css-conditional/container-queries/chrome-legacy-skip-recalc.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
637 B
HTML

<!doctype html>
<title>CSS Container Queries Test: Chrome legacy layout skipping style recalc</title>
<link rel="help" href="https://drafts.csswg.org/css-conditional-5/#size-container">
<link rel="help" href="https://crbug.com/1288879">
<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>