mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Rename a frame property that I missed in a mass-rename. a2.0=blocking (Bug 563584)
This commit is contained in:
parent
4417a5e49c
commit
219e24a238
@ -379,7 +379,6 @@ GK_ATOM(flex, "flex")
|
||||
GK_ATOM(flexgroup, "flexgroup")
|
||||
GK_ATOM(floating, "floating")
|
||||
GK_ATOM(floatList, "Float-list")
|
||||
GK_ATOM(floatContinuationsList, "FloatContinuations-list")
|
||||
GK_ATOM(floor, "floor")
|
||||
GK_ATOM(focus, "focus")
|
||||
GK_ATOM(following, "following")
|
||||
@ -780,6 +779,7 @@ GK_ATOM(prompt, "prompt")
|
||||
GK_ATOM(propagate, "propagate")
|
||||
GK_ATOM(properties, "properties")
|
||||
GK_ATOM(property, "property")
|
||||
GK_ATOM(pushedFloatsList, "PushedFloats-list")
|
||||
GK_ATOM(q, "q")
|
||||
GK_ATOM(query, "query")
|
||||
GK_ATOM(queryset, "queryset")
|
||||
|
@ -564,7 +564,7 @@ nsBlockFrame::GetChildList(nsIAtom* aListName) const
|
||||
const nsFrameList* list = GetOverflowOutOfFlows();
|
||||
return list ? *list : nsFrameList::EmptyList();
|
||||
}
|
||||
else if (aListName == nsGkAtoms::floatContinuationsList) {
|
||||
else if (aListName == nsGkAtoms::pushedFloatsList) {
|
||||
const nsFrameList* list = GetPushedFloats();
|
||||
return list ? *list : nsFrameList::EmptyList();
|
||||
}
|
||||
@ -601,7 +601,7 @@ nsBlockFrame::GetAdditionalChildListName(PRInt32 aIndex) const
|
||||
case NS_BLOCK_FRAME_ABSOLUTE_LIST_INDEX:
|
||||
return nsGkAtoms::absoluteList;
|
||||
case NS_BLOCK_FRAME_PUSHED_FLOATS_LIST_INDEX:
|
||||
return nsGkAtoms::floatContinuationsList;
|
||||
return nsGkAtoms::pushedFloatsList;
|
||||
default:
|
||||
return nsnull;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user