diff options
Diffstat (limited to '')
-rw-r--r-- | dom/base/ContentIterator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/base/ContentIterator.cpp b/dom/base/ContentIterator.cpp index 0b405f0348..80c795d137 100644 --- a/dom/base/ContentIterator.cpp +++ b/dom/base/ContentIterator.cpp @@ -715,7 +715,7 @@ nsIContent* ContentIteratorBase<NodeType>::GetNextSibling( // For shadow root, instead of getting to the sibling of the parent // directly, we need to get into the light tree of the parent to handle // slotted contents. - if (ShadowRoot* shadowRoot = ShadowRoot::FromNode(aNode)) { + if (aNode->IsShadowRoot()) { if (nsIContent* child = parent->GetFirstChild()) { return child; } |