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