mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 1262338 (Part 3) - When RemoveFrameRectFilter is finished, mRow should be at mFrameRect.YMost(). r=njn
This commit is contained in:
parent
030ca494bd
commit
7bae22a533
@ -418,7 +418,7 @@ protected:
|
||||
{
|
||||
uint8_t* rowPtr = mNext.ResetToFirstRow();
|
||||
if (rowPtr == nullptr) {
|
||||
mRow = InputSize().height;
|
||||
mRow = mFrameRect.YMost();
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
@ -455,7 +455,7 @@ protected:
|
||||
return Nothing();
|
||||
});
|
||||
|
||||
mRow = InputSize().height;
|
||||
mRow = mFrameRect.YMost();
|
||||
return nullptr; // We're done.
|
||||
}
|
||||
|
||||
@ -520,7 +520,7 @@ protected:
|
||||
return Nothing();
|
||||
});
|
||||
|
||||
mRow = InputSize().height;
|
||||
mRow = mFrameRect.YMost();
|
||||
return nullptr; // We're done.
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user