author | Miko Mynttinen <mikokm@gmail.com> |
Fri, 04 Jan 2019 18:32:46 +0000 | |
changeset 452576 | 75084adf55a7a992ab00ef777086fdccf3e0f57c |
parent 452575 | 3079e8d58d96756f3e2ea26237904d37331a61f1 |
child 452577 | 35dc9703f35828c01e960e5d1e52fc96620afd85 |
push id | 35315 |
push user | shindli@mozilla.com |
push date | Sat, 05 Jan 2019 03:59:26 +0000 |
treeherder | mozilla-central@6dd228164d42 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mattwoodrow |
bugs | 1512244 |
milestone | 66.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/layout/generic/nsFrame.cpp +++ b/layout/generic/nsFrame.cpp @@ -3584,18 +3584,18 @@ void nsIFrame::BuildDisplayListForChild( // SVG effects or a blend mode.. const nsStyleDisplay* disp = child->StyleDisplay(); const nsStyleEffects* effects = child->StyleEffects(); const nsStylePosition* pos = child->StylePosition(); const bool isPositioned = disp->IsAbsPosContainingBlock(child); const bool isStackingContext = - child->IsStackingContext(disp, pos, effects, isPositioned) || - (aFlags & DISPLAY_CHILD_FORCE_STACKING_CONTEXT); + (aFlags & DISPLAY_CHILD_FORCE_STACKING_CONTEXT) || + child->IsStackingContext(disp, pos, effects, isPositioned); if (pseudoStackingContext || isStackingContext || isPositioned || isPlaceholder || (!isSVG && disp->IsFloating(child)) || (isSVG && (effects->mClipFlags & NS_STYLE_CLIP_RECT) && IsSVGContentWithCSSClip(child))) { pseudoStackingContext = true; awayFromCommonPath = true; }