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

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 e5edad0115e857da48882842f578346d613dd6d2..26ecc00a676f72baf6b9a4c11b9886425660e072 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
+++ b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.cpp
@@ -58,4 +58,16 @@ CustomElementMicrotaskStep::Result CustomElementMicrotaskResolutionStep::process
return CustomElementMicrotaskStep::Continue;
}
+#if !defined(NDEBUG)
+
+void CustomElementMicrotaskResolutionStep::show(unsigned indent)
+{
+ for (unsigned i = 0; i < indent; ++i)
+ fprintf(stderr, " ");
+ fprintf(stderr, "Resolution: ");
+ m_element->outerHTML().show();
+}
+
+#endif
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698