diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/plugins/test/mochitest/test_bug1307694.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/plugins/test/mochitest/test_bug1307694.html')
-rw-r--r-- | dom/plugins/test/mochitest/test_bug1307694.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dom/plugins/test/mochitest/test_bug1307694.html b/dom/plugins/test/mochitest/test_bug1307694.html new file mode 100644 index 000000000..97ee1b6ef --- /dev/null +++ b/dom/plugins/test/mochitest/test_bug1307694.html @@ -0,0 +1,41 @@ +<!DOCTYPE html> +<html> +<head> + <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <script type="application/javascript" src="plugin-utils.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> +</head> +<body onLoad="addPluginElement()"> + + <script type="text/javascript"> + SimpleTest.waitForExplicitFinish(); + SpecialPowers.setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED); + + function addPluginElement() { + var p = document.createElement('embed'); + p.setAttribute('id', 'plugin2'); + p.setAttribute('type', 'application/x-shockwave-flash-test'); + p.setAttribute('scale', 'noscale'); + p.setAttribute('salign', 'lt'); + document.body.appendChild(p); + SimpleTest.executeSoon(function() { + runTests(); + }); + } + + function runTests() { + p = document.getElementById('plugin1'); + ok(p.setColor != undefined, "Static plugin parameter (salign/scale) ordering were correct"); + p2 = document.getElementById('plugin2'); + ok(p2.setColor != undefined, "Dynamic plugin parameter (salign/scale) ordering were correct"); + SimpleTest.finish(); + } + + </script> + <p id="display"></p> + + <div id="div1"> + <embed id="plugin1" type="application/x-shockwave-flash-test" width="200" height="200" scale="noscale" salign="lt"></embed> + </div> +</body> +</html> |