Source code
Revision control
Copy as Markdown
Other Tools
<!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>