зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
788 B
HTML
24 строки
788 B
HTML
<html>
|
|
<head>
|
|
<title>NPAPI Cookie Tests</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="plugin-utils.js"></script>
|
|
</head>
|
|
|
|
<body onload="runTests()">
|
|
<script class="testbody" type="application/javascript">
|
|
SimpleTest.waitForExplicitFinish();
|
|
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
|
|
|
|
function runTests() {
|
|
var pluginElement = document.getElementById("plugin1");
|
|
pluginElement.setCookie("foo");
|
|
is(pluginElement.getCookie(), "foo", "Cookie was set and retrieved correctly via NPAPI.");
|
|
SimpleTest.finish();
|
|
}
|
|
</script>
|
|
|
|
<embed id="plugin1" type="application/x-test" width="400" height="400"></embed>
|
|
</body>
|
|
</html>
|