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