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>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=441567711">
<meta name="assert" content="This should not crash.">
<body>
<script>
let t = (new KeyframeEffect(null, [], { pseudoElement: "img2" })).getTiming();
</script>
</body>
</html>