summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug613113.html
blob: 3308246af04057e854ba291a5d9b38d10806ed15 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=613113
-->
<head>
  <title>Test for Bug 613113</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=613113">Mozilla Bug 613113</a>
<p id="display"></p>
<div id="content" style="display: none">
  <iframe name='f'></iframe>
  <form target='f' action="data:text/html,">
    <output></output>
    <button></button>
  </form>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 613113 **/

SimpleTest.waitForExplicitFinish();

var invalidEvent = false;

var form = document.forms[0];
var button = document.getElementsByTagName('button')[0];
var output = document.getElementsByTagName('output')[0];

output.addEventListener("invalid", function() {
  ok(false, "invalid event should have been send");
});

form.addEventListener("submit", function() {
  ok(true, "submit has been caught");
  setTimeout(function() {
    SimpleTest.finish();
  }, 0);
});

output.setCustomValidity("foo");

button.click();

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