| Index: Source/core/html/imports/HTMLImportChild.cpp
|
| diff --git a/Source/core/html/imports/HTMLImportChild.cpp b/Source/core/html/imports/HTMLImportChild.cpp
|
| index b03804c26a3e0844f569a295ad2c178627ba3fb4..d6c45866c5e1a708b6c777047b1f0d2eacbdc195 100644
|
| --- a/Source/core/html/imports/HTMLImportChild.cpp
|
| +++ b/Source/core/html/imports/HTMLImportChild.cpp
|
| @@ -141,7 +141,7 @@ void HTMLImportChild::createCustomElementMicrotaskStepIfNeeded()
|
| {
|
| ASSERT(!m_customElementMicrotaskStep);
|
|
|
| - if (!isDone() && !formsCycle()) {
|
| + if (!hasFinishedLoading() && !formsCycle()) {
|
| #if ENABLE(OILPAN)
|
| m_customElementMicrotaskStep = CustomElement::didCreateImport(this);
|
| #else
|
| @@ -150,7 +150,7 @@ void HTMLImportChild::createCustomElementMicrotaskStepIfNeeded()
|
| }
|
| }
|
|
|
| -bool HTMLImportChild::isDone() const
|
| +bool HTMLImportChild::hasFinishedLoading() const
|
| {
|
| ASSERT(m_loader);
|
|
|
|
|