diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-12 12:34:59 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-07-12 12:34:59 +0200 |
commit | 71a1c47759f30f114ad4e5634ba5224744b7c18c (patch) | |
tree | 70534e710a15d7bc40cfdf24fad22f05a67f70e3 /layout/base | |
parent | 70dd5e7c66b1fe3f82e5b4db2406050baba15f05 (diff) | |
download | uxp-71a1c47759f30f114ad4e5634ba5224744b7c18c.tar.gz |
Fix Build Bustage - with "--enable-debug"
Diffstat (limited to 'layout/base')
-rw-r--r-- | layout/base/nsLayoutUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layout/base/nsLayoutUtils.cpp b/layout/base/nsLayoutUtils.cpp index 9d8dd81bfb..062fbfe158 100644 --- a/layout/base/nsLayoutUtils.cpp +++ b/layout/base/nsLayoutUtils.cpp @@ -5057,7 +5057,7 @@ nsLayoutUtils::IntrinsicForAxis(PhysicalAxis aAxis, NS_PRECONDITION(aFrame->GetParent(), "IntrinsicForAxis called on frame not in tree"); NS_PRECONDITION(aType == MIN_ISIZE || aType == PREF_ISIZE, "bad type"); - MOZ_ASSERT(aFrame->GetParent()->Type() != LayoutFrameType::GridContainer || + MOZ_ASSERT(aFrame->GetParent()->GetType() != nsGkAtoms::gridContainerFrame || aPercentageBasis.isSome(), "grid layout should always pass a percentage basis"); |