Fallback to about:blank to fix bustage of document.open() in consumers such as View MathML Source, b=289363 r+sr=jst, a=asa

This commit is contained in:
rbs%maths.uq.edu.au 2005-08-08 03:15:56 +00:00
Родитель 64ea988cca
Коммит c7fa2b9945
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1867,7 +1867,8 @@ nsHTMLDocument::OpenCommon(const nsACString& aContentType, PRBool aReplace)
if (callerPrincipal) {
callerPrincipal->GetURI(getter_AddRefs(uri));
} else {
}
if (!uri) {
rv = NS_NewURI(getter_AddRefs(uri),
NS_LITERAL_CSTRING("about:blank"));
NS_ENSURE_SUCCESS(rv, rv);