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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp

Issue 249563003: REGRESSION(r171966): Custom elements in async imports don't get upgrade. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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: Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
diff --git a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
index 32394105d0a78da8505b2379e352602eaea8cbe1..5a6e10fb9ff19de75b737fea9ab25360c114310e 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
+++ b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
@@ -55,13 +55,12 @@ CustomElementMicrotaskResolutionStep::~CustomElementMicrotaskResolutionStep()
CustomElementMicrotaskStep::Result CustomElementMicrotaskResolutionStep::process()
{
m_context->resolve(m_element.get(), m_descriptor);
- return CustomElementMicrotaskStep::Continue;
+ return CustomElementMicrotaskStep::ContinueWithRemoving;
}
#if !defined(NDEBUG)
void CustomElementMicrotaskResolutionStep::show(unsigned indent)
{
- fprintf(stderr, "indent: %d\n", indent);
fprintf(stderr, "%*sResolution: ", indent, "");
m_element->outerHTML().show();
}
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskQueue.cpp ('k') | Source/core/dom/custom/CustomElementMicrotaskStep.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698