mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1216288 - Disable warning when we don't build an active layer for RenderFrameParent within an opacity:0 subtree. r=roc
This commit is contained in:
parent
0c53044ce8
commit
395110a0bf
@ -61,6 +61,7 @@ struct ContainerLayerParameters {
|
||||
, mInActiveTransformedSubtree(false)
|
||||
, mDisableSubpixelAntialiasingInDescendants(false)
|
||||
, mInLowPrecisionDisplayPort(false)
|
||||
, mForEventsOnly(false)
|
||||
{}
|
||||
ContainerLayerParameters(float aXScale, float aYScale)
|
||||
: mXScale(aXScale)
|
||||
@ -71,6 +72,7 @@ struct ContainerLayerParameters {
|
||||
, mInActiveTransformedSubtree(false)
|
||||
, mDisableSubpixelAntialiasingInDescendants(false)
|
||||
, mInLowPrecisionDisplayPort(false)
|
||||
, mForEventsOnly(false)
|
||||
{}
|
||||
ContainerLayerParameters(float aXScale, float aYScale,
|
||||
const nsIntPoint& aOffset,
|
||||
@ -84,6 +86,7 @@ struct ContainerLayerParameters {
|
||||
, mInActiveTransformedSubtree(aParent.mInActiveTransformedSubtree)
|
||||
, mDisableSubpixelAntialiasingInDescendants(aParent.mDisableSubpixelAntialiasingInDescendants)
|
||||
, mInLowPrecisionDisplayPort(aParent.mInLowPrecisionDisplayPort)
|
||||
, mForEventsOnly(aParent.mForEventsOnly)
|
||||
{}
|
||||
|
||||
float mXScale, mYScale;
|
||||
@ -112,6 +115,7 @@ struct ContainerLayerParameters {
|
||||
bool mInActiveTransformedSubtree;
|
||||
bool mDisableSubpixelAntialiasingInDescendants;
|
||||
bool mInLowPrecisionDisplayPort;
|
||||
bool mForEventsOnly;
|
||||
/**
|
||||
* When this is false, PaintedLayer coordinates are drawn to with an integer
|
||||
* translation and the scale in mXScale/mYScale.
|
||||
|
@ -3932,9 +3932,11 @@ already_AddRefed<Layer>
|
||||
nsDisplayOpacity::BuildLayer(nsDisplayListBuilder* aBuilder,
|
||||
LayerManager* aManager,
|
||||
const ContainerLayerParameters& aContainerParameters) {
|
||||
ContainerLayerParameters params = aContainerParameters;
|
||||
params.mForEventsOnly = mForEventsOnly;
|
||||
RefPtr<Layer> container = aManager->GetLayerBuilder()->
|
||||
BuildContainerLayerFor(aBuilder, aManager, mFrame, this, &mList,
|
||||
aContainerParameters, nullptr,
|
||||
params, nullptr,
|
||||
FrameLayerBuilder::CONTAINER_ALLOW_PULL_BACKGROUND_COLOR);
|
||||
if (!container)
|
||||
return nullptr;
|
||||
|
@ -388,7 +388,9 @@ RenderFrameParent::BuildLayer(nsDisplayListBuilder* aBuilder,
|
||||
// draw a manager's subtree. The latter is bad bad bad, but the the
|
||||
// MOZ_ASSERT() above will flag it. Returning nullptr here will just
|
||||
// cause the shadow subtree not to be rendered.
|
||||
NS_WARNING("Remote iframe not rendered");
|
||||
if (!aContainerParameters.mForEventsOnly) {
|
||||
NS_WARNING("Remote iframe not rendered");
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user