mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 18:47:53 +00:00
Slight correction to previous patch. b=209359
This commit is contained in:
parent
78e42e3723
commit
74c2fa7ad8
@ -4623,12 +4623,14 @@ GetIBSpecialSibling(nsIPresContext* aPresContext,
|
||||
}
|
||||
|
||||
/*
|
||||
* Get a next sibling, or, if there is none, get the parent's next in
|
||||
* flow's first child.
|
||||
* Get the last-in-flow's next sibling, or, if there is none, get the
|
||||
* parent's next in flow's first child.
|
||||
*/
|
||||
static nsIFrame*
|
||||
GetNextSiblingAcrossLines(nsIPresContext *aPresContext, nsIFrame *aFrame)
|
||||
{
|
||||
aFrame = aFrame->GetLastInFlow();
|
||||
|
||||
nsIFrame *result;
|
||||
aFrame->GetNextSibling(&result);
|
||||
if (result)
|
||||
|
@ -4623,12 +4623,14 @@ GetIBSpecialSibling(nsIPresContext* aPresContext,
|
||||
}
|
||||
|
||||
/*
|
||||
* Get a next sibling, or, if there is none, get the parent's next in
|
||||
* flow's first child.
|
||||
* Get the last-in-flow's next sibling, or, if there is none, get the
|
||||
* parent's next in flow's first child.
|
||||
*/
|
||||
static nsIFrame*
|
||||
GetNextSiblingAcrossLines(nsIPresContext *aPresContext, nsIFrame *aFrame)
|
||||
{
|
||||
aFrame = aFrame->GetLastInFlow();
|
||||
|
||||
nsIFrame *result;
|
||||
aFrame->GetNextSibling(&result);
|
||||
if (result)
|
||||
|
Loading…
Reference in New Issue
Block a user