Index: Source/core/dom/custom/CustomElementCallbackQueue.cpp |
diff --git a/Source/core/dom/custom/CustomElementCallbackQueue.cpp b/Source/core/dom/custom/CustomElementCallbackQueue.cpp |
index f439ccda1f285653d456e4e68eea729d3f7d837f..72e51b896a5e574812873d2fe3eb44b3ef5e97af 100644 |
--- a/Source/core/dom/custom/CustomElementCallbackQueue.cpp |
+++ b/Source/core/dom/custom/CustomElementCallbackQueue.cpp |
@@ -52,7 +52,7 @@ bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller) |
bool didWork = false; |
while (m_index < m_queue.size() && owner() == caller) { |
- m_inCreatedCallback = m_queue[m_index]->isCreated(); |
+ m_inCreatedCallback = m_queue[m_index]->isCreatedCallback(); |
// dispatch() may cause recursion which steals this callback |
// queue and reenters processInQueue. owner() == caller |