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/get-timing-bad-pseudo-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<title>getTiming on a KeyframeEffect with invalid pseudoElement option</title>
<meta name="assert" content="This should not crash.">
<body>
<script>
let t = (new KeyframeEffect(null, [], { pseudoElement: "img2" })).getTiming();
</script>
</body>
</html>