summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/chrome/test_sanityPluginUtils.html
blob: f0814259e520fdba33dd04210fea1027e71c8b0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE HTML>
<html>
<head>
  <script type="text/javascript">
  var start = new Date();
  </script>
  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
  <script type="text/javascript">
  var loadTime = new Date();
  </script>
  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
</head>
<body onload="starttest()">
<!-- load the test plugin defined at $(DIST)/bin/plugins/Test.plugin/ -->
<embed id="plugin1" type="application/x-test" width="200" height="200"></embed>
<script class="testbody" type="text/javascript">
info("\nProfile::PluginUtilsLoadTime: " + (loadTime - start) + "\n");
function starttest() {
  SimpleTest.waitForExplicitFinish();
  var startTime = new Date();
  //increase the runtime of the test so it is detectible, otherwise we get 0-1ms
  runtimes = 100;
  function runTest(plugin) {
    is(plugin.version, "1.0.0.0", "Make sure version is correct");
    is(plugin.name, "Test Plug-in");
  };
  while (runtimes > 0) {
    ok(PluginUtils.withTestPlugin(runTest), "Test plugin should be found");
    --runtimes;
  }
  var endTime = new Date();
  info("\nProfile::PluginUtilsRunTime: " + (endTime-startTime) + "\n");
  SimpleTest.finish();
};
</script>
</body>
</html>