mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 07:18:39 +09:00
Bug 1377648 - Fix HTMLSummaryElement::IsSummary() on removing the element
* Use inFlowFrame to check the target frame is summary and its parent is details * Check summary frame instead of summary element on removing the summary Tag #1375
This commit is contained in:
parent
9b868f0298
commit
84d3b44b86
4 changed files with 35 additions and 12 deletions
|
|
@ -129,3 +129,12 @@ DetailsFrame::AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
|||
aElements.AppendElement(mDefaultSummary);
|
||||
}
|
||||
}
|
||||
|
||||
bool
|
||||
DetailsFrame::HasMainSummaryFrame(nsIFrame* aSummaryFrame)
|
||||
{
|
||||
nsIFrame* firstChild =
|
||||
nsPlaceholderFrame::GetRealFrameFor(mFrames.FirstChild());
|
||||
|
||||
return aSummaryFrame == firstChild;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue