summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/chrome/test_animate_xrays.html
blob: 56b981bf15941a475c716c2800981ff44dc7f6c2 (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
<!doctype html>
<head>
<meta charset=utf-8>
<script type="application/javascript" src="../testharness.js"></script>
<script type="application/javascript" src="../testharnessreport.js"></script>
<script type="application/javascript" src="../testcommon.js"></script>
</head>
<body>
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1045994"
  target="_blank">Mozilla Bug 1045994</a>
<div id="log"></div>
<iframe id="iframe"
  src="http://example.org/tests/dom/animation/test/chrome/file_animate_xrays.html"></iframe>
<script>
'use strict';

var win = document.getElementById('iframe').contentWindow;

async_test(function(t) {
  window.addEventListener('load', t.step_func(function() {
    var target = win.document.getElementById('target');
    var anim = target.animate({ opacity: [ 0, 1 ] }, 100 * MS_PER_SEC);
    // In the x-ray case, the frames object will be given an opaque wrapper
    // so it won't be possible to fetch any frames from it.
    assert_equals(anim.effect.getKeyframes().length, 0);
    t.done();
  }));
}, 'Calling animate() across x-rays');

</script>
</body>