Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transitions/crashtests/transition-large-word-spacing-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<title>CSS Test (Transitions): Transition of large word-spacing value</title>
<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>