summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_transitions_and_zoom.html
blob: e95581be323c3141c27e661c35404532ec9c65d7 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=583219
-->
<head>
  <title>Test for Bug 583219</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <style type="text/css">

  #display {
    transition: margin-left 1s linear;
  }

  </style>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=583219">Mozilla Bug 583219</a>
<p id="display"></p>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 583219 **/

var p = document.getElementById("display");
var cs = getComputedStyle(p, "");
cs.marginLeft;

p.addEventListener("transitionend", TransitionEndHandler);
p.style.marginLeft = "100px";
cs.marginLeft;

SpecialPowers.setFullZoom(window, 2.0)

SimpleTest.waitForExplicitFinish();

function TransitionEndHandler(event) {
  ok(true, "transition has completed");
  is(event.propertyName, "margin-left", "event.propertyName");
  is(cs.marginLeft, "100px", "value of margin-left");
  SpecialPowers.setFullZoom(window, 1.0)
  SimpleTest.finish();
}

</script>
</pre>
</body>
</html>