Index: third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp |
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp |
index a669cec94f5160648341465ff45231c8442c367a..db1c49df5b8ecefcd296a2b78e9df3e63a01d124 100644 |
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp |
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementsRegistryTest.cpp |
@@ -257,6 +257,9 @@ public: |
LogUpgradeDefinition(const CustomElementDescriptor& descriptor) |
: TestCustomElementDefinition(descriptor) |
{ |
+ m_observedAttributes.add("attr1"); |
+ m_observedAttributes.add("attr2"); |
+ m_observedAttributes.add(HTMLNames::contenteditableAttr.localName()); |
} |
DEFINE_INLINE_VIRTUAL_TRACE() |
@@ -298,7 +301,6 @@ public: |
bool hasConnectedCallback() const override { return true; } |
bool hasDisconnectedCallback() const override { return true; } |
- bool hasAttributeChangedCallback(const QualifiedName&) const override { return true; } |
void runConnectedCallback(Element* element) override |
{ |