mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
parent
95db678f71
commit
ce621f34df
1 changed files with 4 additions and 0 deletions
|
|
@ -1923,6 +1923,10 @@ nsContainerFrame::RenumberFrameAndDescendants(int32_t* aOrdinal,
|
|||
nsIFrame *f = bullet;
|
||||
do {
|
||||
nsIFrame *parent = f->GetParent();
|
||||
if (!parent) {
|
||||
// We may have an orphan situation in some corner cases.
|
||||
break;
|
||||
}
|
||||
parent->ChildIsDirty(f);
|
||||
f = parent;
|
||||
} while (f != listItem);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue