mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
Issue #1355 - Preemptively fix build bustage for 1409114
This commit is contained in:
parent
85b85bac28
commit
e15b1ba0ec
15 changed files with 23 additions and 22 deletions
|
|
@ -6554,7 +6554,7 @@ DisplayLine(nsDisplayListBuilder* aBuilder, const nsRect& aLineArea,
|
|||
// Collect our line's display items in a temporary nsDisplayListCollection,
|
||||
// so that we can apply any "text-overflow" clipping to the entire collection
|
||||
// without affecting previous lines.
|
||||
nsDisplayListCollection collection;
|
||||
nsDisplayListCollection collection(aBuilder);
|
||||
|
||||
// Block-level child backgrounds go on the blockBorderBackgrounds list ...
|
||||
// Inline-level child backgrounds go on the regular child content list.
|
||||
|
|
@ -6620,7 +6620,7 @@ nsBlockFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|||
TextOverflow::WillProcessLines(aBuilder, this));
|
||||
|
||||
// We'll collect our lines' display items here, & then append this to aLists.
|
||||
nsDisplayListCollection linesDisplayListCollection;
|
||||
nsDisplayListCollection linesDisplayListCollection(aBuilder);
|
||||
|
||||
// Don't use the line cursor if we might have a descendant placeholder ...
|
||||
// it might skip lines that contain placeholders but don't themselves
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue