summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1612891-1.html
blob: 44cf022e88cd18879a73d050c2ce76db37656842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
  <script>
    function start() {
      const element = document.createElement('img')
      element.animate([
        { 'easing': '' },
        { 'offset': 'o' },
      ], {})
    }

    window.addEventListener('load', start)
  </script>
</head>
</html>