summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1633442.html
blob: bd31659ca1e1beda12d5adb0219c1f0154ab9eae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html class="reftest-wait">
<head>
<script>
  document.addEventListener('DOMContentLoaded', () => {
    document.documentElement.style.setProperty('transition-duration', '3s', '')
    document.documentElement.style.setProperty('rotate', '2deg', undefined)
    document.documentElement.style.setProperty('-moz-outline-radius-topleft', '2%', '')
    const [anim_1, anim_0] = document.documentElement.getAnimations({})
    anim_1.effect = anim_0.effect
    document.documentElement.classList.remove("reftest-wait");
  })
</script>
</head>
</html>