summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-variables/long-variable-reference-crash.html
blob: d2e36d3c46ec92c9c25465cdee06bafad67862aa (plain)
1
2
3
4
5
6
7
8
<!doctype html>
<title>Very long properties with variable references should not crash</title>
<link rel="author" title="Steinar H. Gunderson" href="mailto:sesse@chromium.org">
<link rel="help" href="https://crbug.com/1429823">
<style id="x"></style>
<script>
x.textContent = '* { border: ' + 'a'.repeat(2097152) + ' var(--b); }';
</script>