Bug 651120 - Remove index argument from content removed/appended/inserted notifications. r=peterv
This commit is contained in:
@@ -75,8 +75,7 @@ HTMLStyleElement::CharacterDataChanged(nsIDocument* aDocument,
|
||||
void
|
||||
HTMLStyleElement::ContentAppended(nsIDocument* aDocument,
|
||||
nsIContent* aContainer,
|
||||
nsIContent* aFirstNewContent,
|
||||
int32_t aNewIndexInContainer)
|
||||
nsIContent* aFirstNewContent)
|
||||
{
|
||||
ContentChanged(aContainer);
|
||||
}
|
||||
@@ -84,8 +83,7 @@ HTMLStyleElement::ContentAppended(nsIDocument* aDocument,
|
||||
void
|
||||
HTMLStyleElement::ContentInserted(nsIDocument* aDocument,
|
||||
nsIContent* aContainer,
|
||||
nsIContent* aChild,
|
||||
int32_t aIndexInContainer)
|
||||
nsIContent* aChild)
|
||||
{
|
||||
ContentChanged(aChild);
|
||||
}
|
||||
@@ -94,7 +92,6 @@ void
|
||||
HTMLStyleElement::ContentRemoved(nsIDocument* aDocument,
|
||||
nsIContent* aContainer,
|
||||
nsIContent* aChild,
|
||||
int32_t aIndexInContainer,
|
||||
nsIContent* aPreviousSibling)
|
||||
{
|
||||
ContentChanged(aChild);
|
||||
|
||||
Reference in New Issue
Block a user