Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/letter-spacing/letter-spacing-animating-font-size.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>percentage letter-spacing animates when animating font-size</title>
<link rel="author" title="Sam Weinig" href="mailto:sam@webkit.org">
<link rel='help' href='https://www.w3.org/TR/css-text-3/#letter-spacing'>
<link rel='match' href='reference/letter-spacing-animating-font-size-ref.html'>
<style>
#target {
letter-spacing: 100%;
}
</style>
</head>
<body>
<div>The letters below should be separated by 20 pixels.</div>
<div id="target">ABCD</div>
<script>
const target = document.querySelector('#target');
const animation = target.animate({ fontSize: ['0px', '40px'] }, 40);
animation.pause();
animation.currentTime = 20;
</script>
</body>
</html>