summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/tests/mochitest/mixedcontent/backward.html
blob: 825c2aa8058740e831aafe3e562f2eebdbf96e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<html>
<head>
  <script type="text/javascript">
  "use strict";
  window.onload = function()
  {
    window.setTimeout(function()
    {
      SpecialPowers.wrap(window).QueryInterface(SpecialPowers.Ci.nsIInterfaceRequestor)
        .getInterface(SpecialPowers.Ci.nsIWebNavigation)
        .goBack();
    }, 100);
  };

  </script>
</head>
</html>