mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
import changes from win7-7/UXP:
bug1347737, bug1365982, bug1367206
This commit is contained in:
parent
c2b2ce2c5c
commit
0f035317a3
96 changed files with 1525 additions and 1329 deletions
|
|
@ -331,7 +331,7 @@ nsFloatManager::GetRegionFor(WritingMode aWM, nsIFrame* aFloat,
|
|||
const nsSize& aContainerSize)
|
||||
{
|
||||
LogicalRect region = aFloat->GetLogicalRect(aWM, aContainerSize);
|
||||
void* storedRegion = aFloat->Properties().Get(FloatRegionProperty());
|
||||
void* storedRegion = aFloat->GetProperty(FloatRegionProperty());
|
||||
if (storedRegion) {
|
||||
nsMargin margin = *static_cast<nsMargin*>(storedRegion);
|
||||
region.Inflate(aWM, LogicalMargin(aWM, margin));
|
||||
|
|
@ -346,15 +346,14 @@ nsFloatManager::StoreRegionFor(WritingMode aWM, nsIFrame* aFloat,
|
|||
{
|
||||
nsRect region = aRegion.GetPhysicalRect(aWM, aContainerSize);
|
||||
nsRect rect = aFloat->GetRect();
|
||||
FrameProperties props = aFloat->Properties();
|
||||
if (region.IsEqualEdges(rect)) {
|
||||
props.Delete(FloatRegionProperty());
|
||||
aFloat->DeleteProperty(FloatRegionProperty());
|
||||
}
|
||||
else {
|
||||
nsMargin* storedMargin = props.Get(FloatRegionProperty());
|
||||
nsMargin* storedMargin = aFloat->GetProperty(FloatRegionProperty());
|
||||
if (!storedMargin) {
|
||||
storedMargin = new nsMargin();
|
||||
props.Set(FloatRegionProperty(), storedMargin);
|
||||
aFloat->SetProperty(FloatRegionProperty(), storedMargin);
|
||||
}
|
||||
*storedMargin = region - rect;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue