mirror of
https://github.com/servo/servo.git
synced 2025-06-26 01:54:33 +01:00
8 lines
340 B
HTML
8 lines
340 B
HTML
<!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>
|