blob: 8699a07ddad36191322fec46c790f5feba001b0b (
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).docShell
.QueryInterface(SpecialPowers.Ci.nsIWebNavigation)
.goBack();
}, 100);
};
</script>
</head>
</html>
|