dom/animation/test/crashtests/1278485-1.html
author Serban Stanca <sstanca@mozilla.com>
Thu, 17 Jul 2025 20:21:32 +0300 (5 hours ago)
changeset 797003 7ec5a911287f51bc177058928bb102163a3b656e
parent 304658 ac72085aab9d7818b729587dd90feba0bc46b460
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>
<html>
<head>
<meta charset="UTF-8">
<script>

function boom()
{
  document.body.animate([],
                        { duration: 6,
                          easing: "cubic-bezier(0, -1e+39, 0, 0)" });
  document.body.animate([],
                        { duration: 6,
                          easing: "cubic-bezier(0, 1e+39, 0, 0)" });
  document.body.animate([],
                        { duration: 6,
                          easing: "cubic-bezier(0, 0, 0, -1e+39)" });
  document.body.animate([],
                        { duration: 6,
                          easing: "cubic-bezier(0, 0, 0, 1e+39)" });
}

</script>
</head>
<body onload="boom();"></body>
</html>