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/keyframe-effect-null-target.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Creating KeyframeEffect with null target should not crash</title>
<div id="target"></div>
<script>
new KeyframeEffect(null, [], {});
</script>