TEST_F(PaintPropertyTreeBuilderTest, TransformNodeDoesNotAffectEffectNodes) { setBodyInnerHTML( "<div id='nodeWithOpacity' style='opacity: 0.6'>" " <div id='childWithTransform' style='transform: translate3d(10px, 10px, 0px);'>" " <div id='grandChildWithOpacity' style='opacity: 0.4'/>" " </div" "</div>"); LayoutObject& nodeWithOpacity = *document().getElementById("nodeWithOpacity")->layoutObject(); ObjectPaintProperties* nodeWithOpacityProperties = nodeWithOpacity.objectPaintProperties(); EXPECT_EQ(0.6f, nodeWithOpacityProperties->effect()->opacity()); EXPECT_EQ(nullptr, nodeWithOpacityProperties->effect()->parent()); EXPECT_EQ(nullptr, nodeWithOpacityProperties->transform()); LayoutObject& childWithTransform = *document().getElementById("childWithTransform")->layoutObject(); ObjectPaintProperties* childWithTransformProperties = childWithTransform.objectPaintProperties(); EXPECT_EQ(nullptr, childWithTransformProperties->effect()); EXPECT_EQ(TransformationMatrix().translate(10, 10), childWithTransformProperties->transform()->matrix()); LayoutObject& grandChildWithOpacity = *document().getElementById("grandChildWithOpacity")->layoutObject(); ObjectPaintProperties* grandChildWithOpacityProperties = grandChildWithOpacity.objectPaintProperties(); EXPECT_EQ(0.4f, grandChildWithOpacityProperties->effect()->opacity()); EXPECT_EQ(nodeWithOpacityProperties->effect(), grandChildWithOpacityProperties->effect()->parent()); EXPECT_EQ(nullptr, grandChildWithOpacityProperties->transform()); }
TEST_F(PaintPropertyTreeBuilderTest, FixedTransformAncestorAcrossSVGHTMLBoundary) { setBodyInnerHTML( "<style> body { margin: 0px; } </style>" "<svg id='svg' style='transform: translate3d(1px, 2px, 3px);'>" " <g id='container' transform='translate(20 30)'>" " <foreignObject>" " <body>" " <div id='fixed' style='position: fixed; left: 200px; top: 150px;'></div>" " </body>" " </foreignObject>" " </g>" "</svg>"); LayoutObject& svg = *document().getElementById("svg")->layoutObject(); ObjectPaintProperties* svgProperties = svg.objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate3d(1, 2, 3), svgProperties->transform()->matrix()); LayoutObject& container = *document().getElementById("container")->layoutObject(); ObjectPaintProperties* containerProperties = container.objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate(20, 30), containerProperties->transform()->matrix()); EXPECT_EQ(svgProperties->transform(), containerProperties->transform()->parent()); Element* fixed = document().getElementById("fixed"); ObjectPaintProperties* fixedProperties = fixed->layoutObject()->objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate(200, 150), fixedProperties->paintOffsetTranslation()->matrix()); // Ensure the fixed position element is rooted at the nearest transform container. EXPECT_EQ(containerProperties->transform(), fixedProperties->paintOffsetTranslation()->parent()); }
TEST_F(PaintPropertyTreeBuilderTest, PositionAndScroll) { loadTestData("position-and-scroll.html"); Element* scroller = document().getElementById("scroller"); scroller->scrollTo(0, 100); FrameView* frameView = document().view(); frameView->updateAllLifecyclePhases(); ObjectPaintProperties* scrollerProperties = scroller->layoutObject()->objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate(0, -100), scrollerProperties->scrollTranslation()->matrix()); EXPECT_EQ(frameView->scrollTranslation(), scrollerProperties->scrollTranslation()->parent()); EXPECT_EQ(frameView->scrollTranslation(), scrollerProperties->overflowClip()->localTransformSpace()); EXPECT_EQ(FloatRoundedRect(120, 340, 400, 300), scrollerProperties->overflowClip()->clipRect()); EXPECT_EQ(frameView->contentClip(), scrollerProperties->overflowClip()->parent()); // The relative-positioned element should have accumulated box offset (exclude scrolling), // and should be affected by ancestor scroll transforms. Element* relPos = document().getElementById("rel-pos"); ObjectPaintProperties* relPosProperties = relPos->layoutObject()->objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate(680, 1120), relPosProperties->paintOffsetTranslation()->matrix()); EXPECT_EQ(scrollerProperties->scrollTranslation(), relPosProperties->paintOffsetTranslation()->parent()); EXPECT_EQ(relPosProperties->transform(), relPosProperties->overflowClip()->localTransformSpace()); EXPECT_EQ(FloatRoundedRect(0, 0, 400, 0), relPosProperties->overflowClip()->clipRect()); EXPECT_EQ(scrollerProperties->overflowClip(), relPosProperties->overflowClip()->parent()); // The absolute-positioned element should not be affected by non-positioned scroller at all. Element* absPos = document().getElementById("abs-pos"); ObjectPaintProperties* absPosProperties = absPos->layoutObject()->objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate(123, 456), absPosProperties->paintOffsetTranslation()->matrix()); EXPECT_EQ(frameView->scrollTranslation(), absPosProperties->paintOffsetTranslation()->parent()); EXPECT_EQ(absPosProperties->transform(), absPosProperties->overflowClip()->localTransformSpace()); EXPECT_EQ(FloatRoundedRect(), absPosProperties->overflowClip()->clipRect()); EXPECT_EQ(frameView->contentClip(), absPosProperties->overflowClip()->parent()); }
TEST_F(PaintPropertyTreeBuilderTest, Transform) { loadTestData("transform.html"); Element* transform = document().getElementById("transform"); ObjectPaintProperties* transformProperties = transform->layoutObject()->objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate3d(123, 456, 789), transformProperties->transform()->matrix()); EXPECT_EQ(FloatPoint3D(200, 150, 0), transformProperties->transform()->origin()); EXPECT_EQ(transformProperties->paintOffsetTranslation(), transformProperties->transform()->parent()); EXPECT_EQ(TransformationMatrix().translate(50, 100), transformProperties->paintOffsetTranslation()->matrix()); EXPECT_EQ(document().view()->scrollTranslation(), transformProperties->paintOffsetTranslation()->parent()); }
TEST_F(PaintPropertyTreeBuilderTest, TransformNodesAcrossSVGHTMLBoundary) { setBodyInnerHTML( "<style> body { margin: 0px; } </style>" "<svg id='svgWithTransform' style='transform: translate3d(1px, 2px, 3px);'>" " <foreignObject>" " <body>" " <div id='divWithTransform' style='transform: translate3d(3px, 4px, 5px);'></div>" " </body>" " </foreignObject>" "</svg>"); LayoutObject& svgWithTransform = *document().getElementById("svgWithTransform")->layoutObject(); ObjectPaintProperties* svgWithTransformProperties = svgWithTransform.objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate3d(1, 2, 3), svgWithTransformProperties->transform()->matrix()); LayoutObject& divWithTransform = *document().getElementById("divWithTransform")->layoutObject(); ObjectPaintProperties* divWithTransformProperties = divWithTransform.objectPaintProperties(); EXPECT_EQ(TransformationMatrix().translate3d(3, 4, 5), divWithTransformProperties->transform()->matrix()); // Ensure the div's transform node is a child of the svg's transform node. EXPECT_EQ(svgWithTransformProperties->transform(), divWithTransformProperties->transform()->parent()); }
TEST_F(PaintPropertyTreeBuilderTest, SVGRootPaintOffsetTransformNode) { setBodyInnerHTML( "<style>body { margin: 0px; } </style>" "<svg id='svg' style='margin-left: 50px; margin-top: 25px; width: 100px; height: 100px;' />"); LayoutObject& svg = *document().getElementById("svg")->layoutObject(); ObjectPaintProperties* svgProperties = svg.objectPaintProperties(); // Ensure that a paint offset transform is emitted for SVG, even without a CSS transform. EXPECT_EQ(nullptr, svgProperties->transform()); EXPECT_EQ(TransformationMatrix().translate(50, 25), svgProperties->paintOffsetTranslation()->matrix()); EXPECT_EQ(document().view()->scrollTranslation(), svgProperties->paintOffsetTranslation()->parent()); }
TEST_F(PaintPropertyTreeBuilderTest, EffectNodesAcrossStackingContext) { setBodyInnerHTML( "<div id='nodeWithOpacity' style='opacity: 0.6'>" " <div id='childWithStackingContext' style='position:absolute;'>" " <div id='grandChildWithOpacity' style='opacity: 0.4'/>" " </div" "</div>"); LayoutObject& nodeWithOpacity = *document().getElementById("nodeWithOpacity")->layoutObject(); ObjectPaintProperties* nodeWithOpacityProperties = nodeWithOpacity.objectPaintProperties(); EXPECT_EQ(0.6f, nodeWithOpacityProperties->effect()->opacity()); EXPECT_EQ(nullptr, nodeWithOpacityProperties->effect()->parent()); EXPECT_EQ(nullptr, nodeWithOpacityProperties->transform()); LayoutObject& childWithStackingContext = *document().getElementById("childWithStackingContext")->layoutObject(); EXPECT_EQ(nullptr, childWithStackingContext.objectPaintProperties()); LayoutObject& grandChildWithOpacity = *document().getElementById("grandChildWithOpacity")->layoutObject(); ObjectPaintProperties* grandChildWithOpacityProperties = grandChildWithOpacity.objectPaintProperties(); EXPECT_EQ(0.4f, grandChildWithOpacityProperties->effect()->opacity()); EXPECT_EQ(nodeWithOpacityProperties->effect(), grandChildWithOpacityProperties->effect()->parent()); EXPECT_EQ(nullptr, grandChildWithOpacityProperties->transform()); }