2011-11-20 15:34:33 +04:00
|
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
let source = "about:blank";
|
|
|
|
|
|
|
|
waitForExplicitFinish();
|
|
|
|
openViewSourceWindow(source, function(aWindow) {
|
|
|
|
let gBrowser = aWindow.gBrowser;
|
2011-12-19 15:47:18 +04:00
|
|
|
let docEl = aWindow.document.documentElement;
|
2011-11-20 15:34:33 +04:00
|
|
|
|
2011-11-30 21:44:31 +04:00
|
|
|
is(gBrowser.contentDocument.title, source, "Correct document title");
|
2011-12-19 15:47:18 +04:00
|
|
|
is(docEl.getAttribute("title"),
|
|
|
|
"Source of: " + source + ("nsILocalFileMac" in Components.interfaces ? "" : " - " + docEl.getAttribute("titlemodifier")),
|
|
|
|
"Correct window title");
|
2011-11-20 15:34:33 +04:00
|
|
|
closeViewSourceWindow(aWindow, finish);
|
|
|
|
});
|
|
|
|
}
|