summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1401809.html
blob: 7a3adcc60c53374dfbdb668473c2cfc1969ca359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
  <head>
    <style></style>
    <script>
      o1 = document.createElement('t');
      document.documentElement.appendChild(o1);
      document.styleSheets[0].insertRule('* { will-change:an }', 0);
      k = new KeyframeEffect(o1, [{'willChange':'s'}], {'':''});
      k = null;
      SpecialPowers.forceGC();
      SpecialPowers.forceCC();
    </script>
  </head>
</html>