fune/testing/web-platform/tests/css/css-variables/long-variable-reference-crash.html
Steinar H. Gunderson de028bc183 Bug 1830339 [wpt PR 39729] - Properly test the length of properties containing variable references., a=testonly
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
2023-05-21 22:43:05 +00:00

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>