| Index: third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| index 0fa383a7b639776f6c5620d9b2c1b10b457bed46..d8ed185d0e233bfe29136164ea9ac7fd4522048d 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| @@ -152,8 +152,10 @@ Node::InsertionNotificationRequest ShadowRoot::insertedInto(
|
| if (!insertionPoint->isConnected() || !isOldest())
|
| return InsertionDone;
|
|
|
| - // FIXME: When parsing <video controls>, insertedInto() is called many times without invoking removedFrom.
|
| - // For now, we check m_registeredWithParentShadowroot. We would like to DCHECK(!m_registeredShadowRoot) here.
|
| + // FIXME: When parsing <video controls>, insertedInto() is called many times
|
| + // without invoking removedFrom. For now, we check
|
| + // m_registeredWithParentShadowroot. We would like to
|
| + // DCHECK(!m_registeredShadowRoot) here.
|
| // https://bugs.webkit.org/show_bug.cig?id=101316
|
| if (m_registeredWithParentShadowRoot)
|
| return InsertionDone;
|
|
|