summaryrefslogtreecommitdiffstats
path: root/dom/xslt/tests/mochitest/test_bug1135764.html
blob: a368b9b4abe467aaec2a45b0373bade3faadbab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1135764
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1135764</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

  /** Test for Bug 1135764 **/
  SimpleTest.waitForExplicitFinish();
  var counter = 0;
  var startTimelineValue;

  function waitATick() {
    ++counter;
    if (counter == 1) {
      frames[0].requestAnimationFrame(waitATick);
      return;
    }
    ok(frames[0].document.timeline.currentTime !== startTimelineValue,
       "The timeline in an XSLT-transformed document should still advance");
    SimpleTest.finish();
  }
  addLoadEvent(function() {
    SpecialPowers.pushPrefEnv(
      {
        set: [
          ["dom.animations-api.timelines.enabled", true],
        ],
      },
      function() {
        var ifr = document.querySelector("iframe");
        ifr.onload = function() {
          startTimelineValue = frames[0].document.timeline.currentTime;
          frames[0].requestAnimationFrame(waitATick);
        };
        ifr.src = "file_bug1135764.xml";
      }
    );
  });
  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1135764">Mozilla Bug 1135764</a>
<p id="display">
  <iframe></iframe>
</p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>
</body>
</html>