summaryrefslogtreecommitdiffstats
path: root/layout/style/test/test_transitions_bug537151.html
blob: 8d3b84a5fc84fa8517b8a1880581d59c9b74de20 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=537151
-->
<head>
  <title>Test for Bug 537151</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 200ms;
  }

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

/** Test for Bug 537151 **/

SimpleTest.waitForExplicitFinish();
SimpleTest.requestFlakyTimeout("untriaged");

var p = document.getElementById("display");
p.addEventListener("transitionend", listener);
var ignored = getComputedStyle(p, "").marginLeft;
p.style.marginLeft = "150px";

var event_count = 0;
function listener(event)
{
  ++event_count;
  setTimeout(finish, 400);
  p.style.color = "blue";
}

function finish()
{
  is(event_count, 1, "should have gotten only 1 transitionend event");
  SimpleTest.finish();
}

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