| Index: Source/core/dom/Element.cpp
 | 
| diff --git a/Source/core/dom/Element.cpp b/Source/core/dom/Element.cpp
 | 
| index ab848a423df8e87d5a8a320d8e29d2ef6ddf1ef6..76fe6db10b62056604c6df4846b534f13ac3aa67 100644
 | 
| --- a/Source/core/dom/Element.cpp
 | 
| +++ b/Source/core/dom/Element.cpp
 | 
| @@ -877,12 +877,10 @@ void Element::attributeChanged(const QualifiedName& name, const AtomicString& ne
 | 
|  
 | 
|  inline void Element::attributeChangedFromParserOrByCloning(const QualifiedName& name, const AtomicString& newValue, AttributeModificationReason reason)
 | 
|  {
 | 
| -#if ENABLE(CUSTOM_ELEMENTS)
 | 
|      if (name == isAttr) {
 | 
|          if (CustomElementRegistry* registry = document()->registry())
 | 
|              registry->didGiveTypeExtension(this);
 | 
|      }
 | 
| -#endif
 | 
|      attributeChanged(name, newValue, reason);
 | 
|  }
 | 
|  
 | 
| 
 |