Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/crashtests/element-animate-font-style.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<meta charset="utf-8">
<title>element.animate with fontStyle should not crash</title>
<div id="target">This test passes if it does not crash.</div>
<script>
target.animate([{fontStyle: "oblique"}, {fontStyle: "oblique"}], 1000);
requestAnimationFrame(() => {
document.documentElement.classList.remove('test-wait');
});
</script>