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

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

Issue 2132343002: Make Custom Elements V1 work in HTML imports documents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: imports-create tests checks the order of constructors Created 4 years, 5 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/CEReactionsScope.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CEReactionsScope.cpp b/third_party/WebKit/Source/core/dom/custom/CEReactionsScope.cpp
index dec7331dac87041e08f26ca8de954c0ea88d66d1..1a204b4166c02a33a9009e2cd6ec2543059f03c3 100644
--- a/third_party/WebKit/Source/core/dom/custom/CEReactionsScope.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CEReactionsScope.cpp
@@ -6,6 +6,7 @@
#include "core/dom/Document.h"
#include "core/dom/Element.h"
+#include "core/dom/custom/CustomElement.h"
#include "core/dom/custom/CustomElementReactionStack.h"
#include "core/frame/FrameHost.h"
@@ -18,10 +19,10 @@ void CEReactionsScope::enqueueToCurrentQueue(
CustomElementReaction* reaction)
{
if (!m_frameHost.get()) {
- m_frameHost = element->document().frameHost();
+ m_frameHost = CustomElement::contextFrameHost(*element);
m_frameHost->customElementReactionStack().push();
} else {
- DCHECK_EQ(m_frameHost, element->document().frameHost());
+ DCHECK_EQ(m_frameHost, CustomElement::contextFrameHost(*element));
}
m_frameHost->customElementReactionStack().enqueueToCurrentQueue(
element, reaction);

Powered by Google App Engine
This is Rietveld 408576698