mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
420 B
HTML
21 lines
420 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
window.onload = function()
|
||
|
{
|
||
|
window.setTimeout(function()
|
||
|
{
|
||
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
||
|
|
||
|
window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
||
|
.getInterface(Components.interfaces.nsIWebNavigation)
|
||
|
.goBack();
|
||
|
}, 100);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
</html>
|