chromium/third_party/blink/web_tests/fast/animation/animate-detached-element.html

<body>
PASS if no crash.
<iframe id="i"></iframe>
<script>
if (window.testRunner)
  testRunner.dumpAsText();

var scrollingElement = i.contentDocument.scrollingElement;
i.remove();
scrollingElement.animate({"bottom": [0]}); 
</script>