18 lines
319 B
HTML
18 lines
319 B
HTML
<!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>
|