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/d-path-neutral-value.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Animating path with an underlying value involving arc flags should not crash</title>
<div id="target"></div>
<script>
target.style.d = 'path("m0 0a0 0 0 0 0 0 0")';
target.animate({d: 'none'}, 1);
getComputedStyle(target).d;
</script>