Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/font-builder.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<meta charset="utf-8">
<title>Element animated with fontSize and fontWeight should not crash</title>
<div id="target">This test passes if it does not crash.</div>
<script>
target.animate([
{fontSize: 'large', fontWeight: 'normal'},
{fontSize: 'small', fontWeight: 'bold'},
], 1);
requestAnimationFrame(() => {
document.documentElement.classList.remove('test-wait');
});
</script>
</html>