summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/test_browserElement_NoAttr.html
blob: 070aee19f9d91f8b07031813ccaf90b244dc1aeb (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=710231
-->
<head>
  <title>Test for Bug 710231</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="browserElementTestHelpers.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=710231">Mozilla Bug 710231</a>

<!--
  Test that an iframe without the |mozbrowser| attribute does not emit
  mozbrowserX events.
-->

<script type="application/javascript;version=1.7">
"use strict";

SimpleTest.waitForExplicitFinish();

function runTest() {
  var iframe = document.getElementById('iframe');
  iframe.addEventListener('mozbrowserloadstart', function() {
    ok(false, 'Should not send mozbrowserloadstart event.');
  });

  iframe.addEventListener('load', function() {
    ok(true, 'Got iframe load event.');
    SimpleTest.finish();
  });

  iframe.src = browserElementTestHelpers.emptyPage1;
}

addEventListener('load', function() { SimpleTest.executeSoon(runTest); });

</script>

<iframe id='iframe'></iframe>

</body>
</html>