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-11-30 21:44:31 +04:00
|
|
|
is(gBrowser.contentDocument.title, source, "Correct document title");
|
2011-11-20 15:34:33 +04:00
|
|
|
todo(aWindow.document.documentElement.getAttribute("title") == "Source of: " + source, "Correct window title");
|
|
|
|
closeViewSourceWindow(aWindow, finish);
|
|
|
|
});
|
|
|
|
}
|