Bug 1425440 - Replace RemoveChildAt_Deprecated with RemoveChildNode in nsXBLPrototypeBinding, r=catalinb

This commit is contained in:
Andrea Marchesini 2018-01-16 16:00:17 +01:00
Родитель a1765c1a3c
Коммит 1aed266368
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -384,9 +384,9 @@ nsXBLPrototypeBinding::AttributeChanged(nsAtom* aAttribute,
kNameSpaceID_XUL) &&
dstAttr == nsGkAtoms::value)) {
// Flush out all our kids.
uint32_t childCount = realElement->GetChildCount();
for (uint32_t i = 0; i < childCount; i++)
realElement->RemoveChildAt_Deprecated(0, aNotify);
while (realElement->HasChildren()) {
realElement->RemoveChildNode(realElement->GetFirstChild(), aNotify);
}
if (!aRemoveFlag) {
// Construct a new text node and insert it.