blob: 7e209f7ffd389744f843fe97b8483404f8ace7e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype html>
<title>CSS Container Queries Test: Inline multicol inside size container - crash</title>
<link rel="help" href="https://drafts.csswg.org/css-contain-3/#size-container">
<link rel="help" href="https://crbug.com/829028">
<style>
#container {
container-type: size;
width: 200px;
height: 100px;
}
@container (width <= 200px) {
#multicol {
column-count: 2;
column-gap: 0;
}
}
</style>
<p>Test passes if it doesn't crash.</p>
<div id="container">
<span id="multicol"><div></div></span>
</div>
|