| Index: Source/core/dom/Element.cpp
|
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
|
| index 0fb87fd82ba96ed9c6922149e4532f81f10bc1bc..1ed668b1675d6b9d89c3fbb076aefcc177dc1292 100644
|
| --- a/Source/core/dom/Element.cpp
|
| +++ b/Source/core/dom/Element.cpp
|
| @@ -1016,7 +1016,7 @@ void Element::attributeChanged(const QualifiedName& name, const AtomicString& ne
|
| inline void Element::attributeChangedFromParserOrByCloning(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason reason)
|
| {
|
| if (name == isAttr)
|
| - CustomElementRegistrationContext::setTypeExtension(this, newValue, reason == ModifiedDirectly ? CustomElementRegistrationContext::CreatedByParser : CustomElementRegistrationContext::NotCreatedByParser);
|
| + CustomElementRegistrationContext::setTypeExtension(this, newValue);
|
| attributeChanged(name, newValue, reason);
|
| }
|
|
|
| @@ -1879,9 +1879,7 @@ void Element::beginParsingChildren()
|
| void Element::finishParsingChildren()
|
| {
|
| setIsParsingChildrenFinished();
|
| - checkForSiblingStyleChanges(true, lastChild(), 0, 0);
|
| - if (isCustomElement())
|
| - CustomElement::didFinishParsingChildren(this);
|
| + checkForSiblingStyleChanges(this, lastChild(), 0, 0);
|
| }
|
|
|
| #ifndef NDEBUG
|
|
|