summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/test_defaultValue.html
blob: 2cbe52efe0e6d4ecf255bb9bd53cd003f820bb14 (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
<html>
  <head>
    <title>NPObject [[DefaultValue]] implementation</title>

    <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
    <script type="text/javascript" src="plugin-utils.js"></script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  </head>

  <body onload="run()">

    <script class="testbody" type="application/javascript">
      SimpleTest.waitForExplicitFinish();
      setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);

      function run() {
        var plugin = document.getElementById("plugin");
        var pluginProto = Object.getPrototypeOf(plugin);

        plugin.propertyAndMethod = {};
        plugin.propertyAndMethod + "baz";
        ok(true, "|plugin.propertyAndMethod + \"baz\"| shouldn't assert");
        pluginProto.propertyAndMethod = {};
        pluginProto.propertyAndMethod + "quux";
        ok(true, "|pluginProto.propertyAndMethod + \"quux\"| shouldn't assert");

        plugin + "foo";
        ok(true, "|plugin + \"foo\"| shouldn't assert");
        pluginProto + "bar";
        ok(true, "|pluginProto + \"bar\"| shouldn't assert");

        SimpleTest.finish();
      }
    </script>

    <embed id="plugin" type="application/x-test" wmode="window"></embed>
  </body>
</html>