summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1324554-1.html
blob: b3f9435a18579231327a8c75f36137ba90e0faad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
  <head>
  <meta charset="UTF-8">
  <title>Bug 1324554 - missing final keyframes and zero-length segments together</title>
  </head>
  <script>
    function go() {
      var div = document.getElementById('target');
      div.animate([ { "flex": "none" },
                    { "flex": "initial", offset: 0.5 },
                    { "flex": "0.0 ", offset: 0.5 },
                    {} ]);
    }
  </script>
  <body onload="go()">
    <div id='target' ></div>
  </body>
</html>