summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug1332699.html
blob: c2a858d8ad08d793352cdb343f914ddf2c849e69 (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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test for bug 1332699</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
<style>
#test {
  color: red;
  transition: color 100ms;
}
#test.changed {
  color: green;
}
</style>
<div id="test"></div>
<script>
SimpleTest.waitForExplicitFinish();

window.onload = function () {
  let $test = document.getElementById('test');
  is(getComputedStyle($test).color, 'rgb(255, 0, 0)',
     'color should be red before transition');
  let numEvents = 0;
  $test.addEventListener('webkitTransitionEnd', function() {
    ++numEvents;
    if (numEvents == 1) {
      is(getComputedStyle($test).color, 'rgb(0, 128, 0)',
         'color should be green after transition');
      $test.dispatchEvent(new TransitionEvent('transitionend'));
      is(numEvents, 1, "Shouldn't receive the prefixed event again");
      SimpleTest.finish();
    }
  });
  $test.className = 'changed';
};
</script>