Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp

Issue 2032373002: Revert of Implement the script parts of custom element upgrade steps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ce-upgrade-in-document-dom-merge2
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
index b261c80514f8de4966a4f07f43eb41362d471fe0..4c7626d3171b1e9405d056961fc2d425cf1a3e6d 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinition.cpp
@@ -24,11 +24,6 @@
// https://html.spec.whatwg.org/multipage/scripting.html#concept-upgrade-an-element
void CustomElementDefinition::upgrade(Element* element)
{
- // TODO(dominicc): When the attributeChangedCallback is implemented,
- // enqueue reactions for attributes here.
- // TODO(dominicc): When the connectedCallback is implemented, enqueue
- // reactions here, if applicable.
-
m_constructionStack.append(element);
size_t depth = m_constructionStack.size();
@@ -43,7 +38,20 @@
if (!succeeded)
return;
- CHECK(element->getCustomElementState() == CustomElementState::Custom);
+ // TODO(dominicc): Turn this into an assertion when setting
+ // 'custom' moves to the HTMLElement constructor. We will need to
+ // add a bit for MARQUEE to be custom-gets-callbacks-yet-not-custom.
+ element->setCustomElementState(CustomElementState::Custom);
+
+ // TODO(dominicc): When the attributeChangedCallback is implemented,
+ // enqueue reactions for attributes here.
+ // TODO(dominicc): When the connectedCallback is implemented, enqueue
+ // reactions here, if applicable.
+}
+
+bool CustomElementDefinition::runConstructor(Element*)
+{
+ return true;
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698