summaryrefslogtreecommitdiffstats
path: root/dom/plugins/test/mochitest/test_cookies.html
blob: f5279677066690a217e12a3892167f85bf1258d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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>