Index: third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLElementCustom.cpp |
diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLElementCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLElementCustom.cpp |
index 1a810a9c7ef0febf748a04a2af890c4de3d93a15..5f34f6920d36000c8a164426c39f659a43fa491e 100644 |
--- a/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLElementCustom.cpp |
+++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8HTMLElementCustom.cpp |
@@ -12,6 +12,7 @@ |
#include "bindings/core/v8/V8DOMWrapper.h" |
#include "bindings/core/v8/V8ThrowException.h" |
#include "core/dom/Document.h" |
+#include "core/dom/Element.h" |
#include "core/dom/ExceptionCode.h" |
#include "core/dom/custom/CustomElementsRegistry.h" |
#include "core/frame/LocalDOMWindow.h" |
@@ -64,6 +65,7 @@ void V8HTMLElement::constructorCustom( |
// TODO(davaajav): write this as one call to setCustomElementState instead of two |
element->setCustomElementState(CustomElementState::Undefined); |
element->setCustomElementState(CustomElementState::Custom); |
+ element->setCustomElementDefinition(definition); |
dominicc (has gone to gerrit)
2016/08/03 07:56:56
What do you think about setting the state to custo
|
} else { |
element = definition->constructionStack().last(); |
if (element) { |