gecko-dev/dom/tests/mochitest/chrome/window_focus_inner.xul

13 строки
377 B
XML

<?xml version="1.0"?>
<window onfocus='dostuff()' xmlns='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul' style='-moz-user-focus: normal;'>
<script>
function dostuff() {
setTimeout(function() {
document.documentElement.focus();
document.removeChild(document.documentElement);
window.opener.focus();
}, 100);
}
</script>
</window>