summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug388746.html
blob: 38c73ee0b53f0e8d9e1a009b9f7ed35ce7c22d8c (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
59
60
61
62
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=388746
-->
<head>
  <title>Test for Bug 388746</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=388746">Mozilla Bug 388746</a>
<p id="display"></p>
<div id="content">
  <input>
  <textarea></textarea>
  <select>
    <option>option1</option>
    <optgroup label="optgroup">
    <option>option2</option>
    </optgroup>
  </select>
  <button>Button</button>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 388746 **/

var previousEventTarget = "";

function handler(evt) {
  if (evt.eventPhase == 2) {
    previousEventTarget = evt.target.localName.toLowerCase();
  }
}

function testElementType(type) {
  var el = document.getElementsByTagName(type)[0];
  el.addEventListener("DOMAttrModified", handler, true);
  el.setAttribute("foo", "bar");
  ok(previousEventTarget == type,
     type + " element should have got DOMAttrModified event.");
}

function test() {
  testElementType("input");
  testElementType("textarea");
  testElementType("select");
  testElementType("option");
  testElementType("optgroup");
  testElementType("button");
}

SimpleTest.waitForExplicitFinish();
addLoadEvent(test);
addLoadEvent(SimpleTest.finish);
</script>
</pre>
</body>
</html>