| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 188d946d60596715872a0499f770a7bab79cb750..af25d05c55b0092279a04046114ff5dbfd38b494 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2147,7 +2147,7 @@ void Element::childrenChanged(const ChildrenChange& change)
|
|
|
| checkForEmptyStyleChange();
|
| if (!change.byParser && change.isChildElementChange())
|
| - checkForSiblingStyleChanges(change.type == ElementRemoved ? SiblingElementRemoved : SiblingElementInserted, toElement(change.siblingChanged), change.siblingBeforeChange, change.siblingAfterChange);
|
| + checkForSiblingStyleChanges(change.type == ElementRemoved ? SiblingElementRemoved : SiblingElementInserted, change.siblingChanged, change.siblingBeforeChange, change.siblingAfterChange);
|
|
|
| // TODO(hayato): Confirm that we can skip this if a shadow tree is v1.
|
| if (ElementShadow* shadow = this->shadow())
|
|
|