forked from mirrors/gecko-dev
Automatic update from web-platform-tests Properly test the length of properties containing variable references. Fixed: 1423568 Change-Id: I5ffed0fd4ada6ca10be78be891b161f4abe1d62d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4481601 Commit-Queue: Steinar H Gunderson <sesse@chromium.org> Reviewed-by: Rune Lillesveen <futhark@chromium.org> Cr-Commit-Position: refs/heads/main@{#1136529} -- wpt-commits: fd012e93b9c3d44ab12ac2d9ba3902ab146c385a wpt-pr: 39729
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>
|