2010-05-10 14:11:14 -07:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>NPAPI Cookie Tests</title>
|
2010-08-24 10:29:34 -07:00
|
|
|
<script type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
2010-05-10 14:11:14 -07:00
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
|
|
href="/tests/SimpleTest/test.css" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="runTests()">
|
|
|
|
<p id="display"></p>
|
|
|
|
|
|
|
|
<embed id="plugin1" type="application/x-test" width="400" height="400"></embed>
|
|
|
|
<script class="testbody" type="application/javascript">
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function runTests() {
|
|
|
|
var pluginElement = document.getElementById("plugin1");
|
|
|
|
var c = 0;
|
|
|
|
var foundSetColor = false;
|
|
|
|
for (var n in pluginElement) {
|
|
|
|
++c;
|
|
|
|
ok(n in pluginElement, "Enumerated property which doesn't exist?");
|
|
|
|
if (n == 'setColor')
|
|
|
|
foundSetColor = true;
|
|
|
|
}
|
|
|
|
ok(c > 0, "Should have enumerated some properties");
|
|
|
|
ok(foundSetColor, "Should have enumerated .setColor");
|
|
|
|
SimpleTest.finish();
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|