Bug 1453828. Fix IsContainerNode to not claim true for doctype nodes. r=mccr8

MozReview-Commit-ID: BC1iBI38wfJ
This commit is contained in:
Boris Zbarsky 2018-04-24 11:57:21 -04:00
Родитель 4a89389ffc
Коммит 1790f0fa04
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -434,7 +434,7 @@ public:
bool IsContainerNode() const
{
return IsElement() || !IsCharacterData();
return IsElement() || IsDocument() || IsDocumentFragment();
}
bool IsSlotable() const