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/crashtests/pseudo-container-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Container Queries Test: No crash when ::after is a container</title>
<style>
div::after {
container-type: size;
content: '';
display: block;
}
</style>
<div>
PASS if no crash
</div>