зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1425440 - Replace RemoveChildAt_Deprecated with RemoveChildNode in nsXBLPrototypeBinding, r=catalinb
This commit is contained in:
Родитель
a1765c1a3c
Коммит
1aed266368
|
@ -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.
|
||||
|
|
Загрузка…
Ссылка в новой задаче