Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/parsing/grid-template-columns-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<body></body>
<script>
let value = '';
for (let i = 0; i < 100000; ++i) {
value += ` repeat(1000, ${i}px)`;
}
document.body.style.gridTemplateColumns = value;
document.body.textContent = 'PASS';
</script>