dom/animation/test/crashtests/1575926.html
author Serban Stanca <sstanca@mozilla.com>
Thu, 17 Jul 2025 20:21:32 +0300 (5 hours ago)
changeset 797003 7ec5a911287f51bc177058928bb102163a3b656e
parent 489839 5885e492eaaf4fdb288ad832866848e5987a22b5
permissions -rw-r--r--
Revert "Bug 1977690 - Remove unused AppRequestInterceptor in androidTests r=aaronmt" for causing fenix-debug failures. This reverts commit bc9dc5f4296482e17560627acaacd2797e462211.
<style>
    @keyframes animation_0 {
        88% { }
    }

    * {
        animation-name: animation_0;
        animation-delay: 4s;
    }
</style>
<script>
  function start () {
    const input = document.createElement('input')
    document.documentElement.appendChild(input)
    const animations = input.getAnimations({})
    const animation = animations[(3782796448 % animations.length)]
    const effect = animation.effect
    effect.setKeyframes({ 'borderLeft': ['inherit'] })
    effect.target = null
    input.contentEditable = 'true'
  }

  document.addEventListener('DOMContentLoaded', start)
</script>