wpt / css / css-backgrounds / animations / background-color-animation-removed-element-crash.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi

/css/css-backgrounds/animations/background-color-animation-removed-element-crash.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-backgrounds-3/#background-color">
<iframe id="foo"></iframe>
<div id="bar"></div>

<script>
  $ = document.querySelector.bind(document);
  var target = document.getElementById("bar");
  target.animate([{"backgroundColor":"blue"},{"backgroundColor":"green"}], {"duration":10});
  $('iframe').contentDocument.documentElement.appendChild(target);
  $('#foo').remove();
</script>