summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/parsing/grid-template-columns-crash.html
blob: 61bdfd8177a7343ce19cc24f97749cdc3ce3274b (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1214890">
<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>