mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Don't crash oif someone sets "display: -moz-grid" on something that has an XBL
base tag. Just make it a grid. Bug 283140, r=neil, sr=roc
This commit is contained in:
parent
53a395aa19
commit
31d9018f20
@ -5830,9 +5830,8 @@ nsCSSFrameConstructor::ConstructXULFrame(nsFrameConstructorState& aState,
|
||||
} // End of BOX CONSTRUCTION logic
|
||||
#ifdef MOZ_XUL
|
||||
// ------- Begin Grid ---------
|
||||
else if ((!aXBLBaseTag && (display->mDisplay == NS_STYLE_DISPLAY_INLINE_GRID ||
|
||||
display->mDisplay == NS_STYLE_DISPLAY_GRID)) ||
|
||||
aTag == nsXULAtoms::grid) {
|
||||
else if (display->mDisplay == NS_STYLE_DISPLAY_INLINE_GRID ||
|
||||
display->mDisplay == NS_STYLE_DISPLAY_GRID) {
|
||||
processChildren = PR_TRUE;
|
||||
isReplaced = PR_TRUE;
|
||||
nsCOMPtr<nsIBoxLayout> layout;
|
||||
|
Loading…
x
Reference in New Issue
Block a user