summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_applet_alternate_content.html
blob: 88cb12f1fb37753c394a46ed8eb5f73c940858c0 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1200602
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1200602</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/SpecialPowers.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=1200602">Mozilla Bug 1200602</a>
<pre id="test">
<script type="application/javascript;version=1.8">

function test() {
  "use strict";

  const objLC = SpecialPowers.Ci.nsIObjectLoadingContent;
  let obj = document.createElement("applet");
  obj.appendChild(document.createTextNode("alternate content"));
  document.body.appendChild(obj);

  obj instanceof objLC;
  obj = SpecialPowers.wrap(obj);

  // We expect this tag to simply go to alternate content, not get a
  // pluginProblem binding or fire any events.
  ok(obj.displayedType == objLC.TYPE_NULL, "expected null type");
  ok(obj.pluginFallbackType == objLC.PLUGIN_ALTERNATE,
     "expected alternate fallback mode");
}

// Test all non-plugin types these tags can load to make sure none of them
// trigger plugin-specific fallbacks when loaded with no URI
test();
</script>
</pre>
</body>
</html>