Bug 87860. Use GetElementsByTagNameNS() to pick up explicitly qualified tags. r=dbaron, sr=hyatt

This commit is contained in:
waterson%netscape.com 2001-07-18 22:44:51 +00:00
Родитель 8a89543e3d
Коммит 4ae03235e4
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -2319,7 +2319,9 @@ nsOutlinerBodyFrame::EnsureColumns()
nsCOMPtr<nsIDOMElement> elt(do_QueryInterface(parent));
nsCOMPtr<nsIDOMNodeList> cols;
elt->GetElementsByTagName(NS_LITERAL_STRING("outlinercol"), getter_AddRefs(cols));
elt->GetElementsByTagNameNS(NS_LITERAL_STRING("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"),
NS_LITERAL_STRING("outlinercol"),
getter_AddRefs(cols));
nsCOMPtr<nsIPresShell> shell;
mPresContext->GetShell(getter_AddRefs(shell));

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

@ -2319,7 +2319,9 @@ nsOutlinerBodyFrame::EnsureColumns()
nsCOMPtr<nsIDOMElement> elt(do_QueryInterface(parent));
nsCOMPtr<nsIDOMNodeList> cols;
elt->GetElementsByTagName(NS_LITERAL_STRING("outlinercol"), getter_AddRefs(cols));
elt->GetElementsByTagNameNS(NS_LITERAL_STRING("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"),
NS_LITERAL_STRING("outlinercol"),
getter_AddRefs(cols));
nsCOMPtr<nsIPresShell> shell;
mPresContext->GetShell(getter_AddRefs(shell));