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/input-column-group-container-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Container Queries Test: </title>
<p>Pass if this test does not crash</p>
<span style="column-count: 1">
<span style="display:table-column-group"></span>
<input id="inp">
</span>
<script>
document.body.offsetTop;
document.body.style.setProperty("container", "inline-size");
inp.setAttribute("type", "image");
</script>