summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transitions/crashtests/transition-large-word-spacing-001.html
blob: 24ac2a7780c642f86148eaacd4ef051a1f646361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML>
<title>CSS Test (Transitions): Transition of large word-spacing value</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1266769">
<meta name="assert" content="This should not crash.">

<div id="d" style="transition-duration: 1s"></div>
<script>

let d = document.getElementById("d");
d.offsetTop;
d.style.wordSpacing = "100000000000000000000000000000000000000000000000000in";

</script>