Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <title>NPObject [[DefaultValue]] implementation</title> |
michael@0 | 4 | |
michael@0 | 5 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 6 | <script type="text/javascript" src="utils.js"></script> |
michael@0 | 7 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 8 | </head> |
michael@0 | 9 | |
michael@0 | 10 | <body onload="run()"> |
michael@0 | 11 | |
michael@0 | 12 | <script class="testbody" type="application/javascript"> |
michael@0 | 13 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 14 | setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED); |
michael@0 | 15 | |
michael@0 | 16 | function run() { |
michael@0 | 17 | var plugin = document.getElementById("plugin"); |
michael@0 | 18 | var pluginProto = Object.getPrototypeOf(plugin); |
michael@0 | 19 | |
michael@0 | 20 | plugin.propertyAndMethod = {}; |
michael@0 | 21 | plugin.propertyAndMethod + "baz"; |
michael@0 | 22 | ok(true, "|plugin.propertyAndMethod + \"baz\"| shouldn't assert"); |
michael@0 | 23 | pluginProto.propertyAndMethod = {}; |
michael@0 | 24 | pluginProto.propertyAndMethod + "quux"; |
michael@0 | 25 | ok(true, "|pluginProto.propertyAndMethod + \"quux\"| shouldn't assert"); |
michael@0 | 26 | |
michael@0 | 27 | plugin + "foo"; |
michael@0 | 28 | ok(true, "|plugin + \"foo\"| shouldn't assert"); |
michael@0 | 29 | pluginProto + "bar"; |
michael@0 | 30 | ok(true, "|pluginProto + \"bar\"| shouldn't assert"); |
michael@0 | 31 | |
michael@0 | 32 | SimpleTest.finish(); |
michael@0 | 33 | } |
michael@0 | 34 | </script> |
michael@0 | 35 | |
michael@0 | 36 | <embed id="plugin" type="application/x-test" wmode="window"></embed> |
michael@0 | 37 | </body> |
michael@0 | 38 | </html> |