Bug 1890902 - Remove unused assignment. r=sefeng

Differential Revision: https://phabricator.services.mozilla.com/D207228
This commit is contained in:
Mike Hommey 2024-04-16 01:04:39 +00:00
Родитель e4bf8a21e0
Коммит b6709d2608
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}