dom/animation/test/crashtests/1277272-1-inner.html
author Serban Stanca <sstanca@mozilla.com>
Thu, 17 Jul 2025 20:21:32 +0300 (9 hours ago)
changeset 797003 7ec5a911287f51bc177058928bb102163a3b656e
parent 616350 de3ae6e428b56776175b0f01e8a28d20fd333b4a
permissions -rw-r--r--
Revert "Bug 1977690 - Remove unused AppRequestInterceptor in androidTests r=aaronmt" for causing fenix-debug failures. This reverts commit bc9dc5f4296482e17560627acaacd2797e462211.
<!doctype html>
<head>
<script>
function start() {
  var animation = document.body.animate([{marks: 'crop'},{marks: 'crop'}], 12);
  document.write('<html><body></body></html>');

  setTimeout(function() { animation.play(); }, 4);
  setTimeout(function() {
    animation.timeline = undefined;

    SpecialPowers.Cu.forceGC();
    window.top.continueTest();
  }, 5);
}
</script>
</head>
<body onload="start()"></body>
</html>