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

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

Issue 144023016: Separate Custom Element resolution and upgrade/createdCallback. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/CustomElementMicrotaskQueue.cpp
diff --git a/Source/core/dom/custom/CustomElementMicrotaskQueue.cpp b/Source/core/dom/custom/CustomElementMicrotaskQueue.cpp
index b63a7ecc9e7a8877c75168113e39fa65b9f8191e..c6af6267a1e2d15c043886ec1810b17d2a50ecde 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskQueue.cpp
+++ b/Source/core/dom/custom/CustomElementMicrotaskQueue.cpp
@@ -46,9 +46,6 @@ CustomElementMicrotaskStep::Result CustomElementMicrotaskQueue::dispatch()
unsigned i;
for (i = 0; i < m_queue.size(); ++i) {
- // The created callback may schedule entered document
- // callbacks.
- CustomElementCallbackDispatcher::CallbackDeliveryScope deliveryScope;
result = Result(result | m_queue[i]->process());
if (result & CustomElementMicrotaskStep::ShouldStop)

Powered by Google App Engine
This is Rietveld 408576698