chromium/third_party/blink/web_tests/external/wpt/css/css-variables/long-variable-reference-crash.html

<!doctype html>
<title>Very long properties with variable references should not crash</title>
<link rel="author" title="Steinar H. Gunderson" href="mailto:[email protected]">
<link rel="help" href="https://crbug.com/1429823">
<style id="x"></style>
<script>
x.textContent = '* { border: ' + 'a'.repeat(2097152) + ' var(--b); }';
</script>