gecko/mobile/chrome/tests/browser_mainui.js
2009-03-18 22:28:42 -05:00

14 lines
456 B
JavaScript

const Cc = Components.classes;
const Ci = Components.interfaces;
function test(){
var mainWindow = window;
is(mainWindow.location.href, "chrome://browser/content/browser.xul", "Did not get main window");
mainWindow.focus();
var browser = mainWindow.getBrowser();
isnot(browser, null, "Should have a browser");
is(browser.currentURI.spec, "about:blank", "Should be displaying the blank page");
}