Bug 405595. ARIA properties ignore on <body> if no role. r=evan.yan, r=surkov, a=dsicore

This commit is contained in:
aaronleventhal@moonset.net 2007-11-30 11:26:36 -08:00
Родитель 848de37cc3
Коммит a9e0d87a65
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -503,7 +503,7 @@ nsIContent *nsAccessible::GetRoleContent(nsIDOMNode *aDOMNode)
htmlDoc->GetBody(getter_AddRefs(bodyElement));
content = do_QueryInterface(bodyElement);
}
if (!content || !HasRoleAttribute(content)) {
if (!content) {
nsCOMPtr<nsIDOMElement> docElement;
domDoc->GetDocumentElement(getter_AddRefs(docElement));
content = do_QueryInterface(docElement);