mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-22 12:23:08 +09:00
18 lines
363 B
HTML
18 lines
363 B
HTML
<!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>
|