mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 03:13:09 +09:00
41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!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>
|