UNPKG

slimerjs-firefox

Version:

This repo includes slimerjs as well as downloads a local copy of Firefox.

28 lines (24 loc) 753 B
/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ var browser = null; window.addEventListener("load", function(event) { browser = document.getElementById('webpage'); browser.stop(); browser.closing = false; if ("arguments" in window && window.arguments[0] && window.arguments[0].callback) { window.arguments[0].callback(browser); } }, true); window.addEventListener("DOMWindowClose", function(event) { if (browser.closing) return; browser.closing = true; if (browser.webpage) { browser.webpage.close(); } }, true);