Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/layout/PaintInvalidationState.h" | 5 #include "core/layout/PaintInvalidationState.h" |
| 6 | 6 |
| 7 #include "core/frame/FrameView.h" | 7 #include "core/frame/FrameView.h" |
| 8 #include "core/frame/Settings.h" | 8 #include "core/frame/Settings.h" |
| 9 #include "core/layout/LayoutInline.h" | 9 #include "core/layout/LayoutInline.h" |
| 10 #include "core/layout/LayoutPart.h" | 10 #include "core/layout/LayoutPart.h" |
| 11 #include "core/layout/LayoutView.h" | 11 #include "core/layout/LayoutView.h" |
| 12 #include "core/layout/svg/LayoutSVGModelObject.h" | 12 #include "core/layout/svg/LayoutSVGModelObject.h" |
| 13 #include "core/layout/svg/LayoutSVGRoot.h" | 13 #include "core/layout/svg/LayoutSVGRoot.h" |
| 14 #include "core/layout/svg/SVGLayoutSupport.h" | 14 #include "core/layout/svg/SVGLayoutSupport.h" |
| 15 #include "core/paint/PaintLayer.h" | 15 #include "core/paint/PaintLayer.h" |
| 16 | 16 |
| 17 // We can't enable this by default because saturated operations of LayoutUnit | 17 // We can't enable this by default because saturated operations of LayoutUnit |
| 18 // don't conform commutative law for overflowing results, preventing us from | 18 // don't conform commutative law for overflowing results, preventing us from |
| 19 // making fast-path and slow-path always return the same result. | 19 // making fast-path and slow-path always return the same result. |
| 20 #define ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH (0 && ENABLE(ASSERT)) | 20 #define ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH (0 && ENABLE(ASSERT)) |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| 24 static bool isAbsolutePositionUnderRelativePositionInline(const LayoutObject& ob ject) | |
| 25 { | |
| 26 if (object.styleRef().position() != AbsolutePosition) | |
| 27 return false; | |
| 28 if (LayoutObject* container = object.container()) | |
| 29 return container->isAnonymousBlock() && container->styleRef().position() == RelativePosition; | |
| 30 return false; | |
| 31 } | |
| 32 | |
| 33 static bool supportsCachedOffsets(const LayoutObject& object) | 24 static bool supportsCachedOffsets(const LayoutObject& object) |
| 34 { | 25 { |
| 35 // TODO(wangxianzhu): Move some conditions to fast path if possible. | |
| 36 return !object.hasTransformRelatedProperty() | 26 return !object.hasTransformRelatedProperty() |
| 37 && !object.hasReflection() | 27 && !object.hasReflection() |
| 38 && !object.hasFilter() | 28 && !object.hasFilter() |
| 39 && !object.isLayoutFlowThread() | 29 && !object.isLayoutFlowThread() |
| 40 && !object.isLayoutMultiColumnSpannerPlaceholder() | 30 && !object.isLayoutMultiColumnSpannerPlaceholder() |
| 41 && object.styleRef().position() != FixedPosition | |
| 42 && !object.styleRef().isFlippedBlocksWritingMode() | 31 && !object.styleRef().isFlippedBlocksWritingMode() |
| 43 // TODO(crbug.com/598094): Handle this in fast path. | 32 && !(object.isLayoutBlock() && object.isSVG()); |
| 44 && !isAbsolutePositionUnderRelativePositionInline(object); | |
| 45 } | 33 } |
| 46 | 34 |
| 47 PaintInvalidationState::PaintInvalidationState(const LayoutView& layoutView, Vec tor<LayoutObject*>& pendingDelayedPaintInvalidations) | 35 PaintInvalidationState::PaintInvalidationState(const LayoutView& layoutView, Vec tor<LayoutObject*>& pendingDelayedPaintInvalidations) |
| 48 : m_currentObject(layoutView) | 36 : m_currentObject(layoutView) |
| 49 , m_clipped(false) | |
| 50 , m_cachedOffsetsEnabled(true) | |
| 51 , m_forcedSubtreeInvalidationWithinContainer(false) | 37 , m_forcedSubtreeInvalidationWithinContainer(false) |
| 52 , m_forcedSubtreeInvalidationRectUpdateWithinContainer(false) | 38 , m_forcedSubtreeInvalidationRectUpdateWithinContainer(false) |
| 53 , m_paintInvalidationContainer(layoutView.containerForPaintInvalidation()) | 39 , m_clipped(false) |
| 40 , m_clippedForAbsolutePosition(false) | |
| 41 , m_cachedOffsetsEnabled(true) | |
| 42 , m_cachedOffsetsForAbsolutePositionEnabled(true) | |
| 43 , m_paintInvalidationContainer(&layoutView.containerForPaintInvalidation()) | |
| 44 , m_paintInvalidationContainerForStackedContents(m_paintInvalidationContaine r) | |
| 45 , m_containerForAbsolutePosition(layoutView) | |
| 54 , m_pendingDelayedPaintInvalidations(pendingDelayedPaintInvalidations) | 46 , m_pendingDelayedPaintInvalidations(pendingDelayedPaintInvalidations) |
| 55 , m_enclosingSelfPaintingLayer(*layoutView.layer()) | 47 , m_enclosingSelfPaintingLayer(*layoutView.layer()) |
| 56 #if ENABLE(ASSERT) | 48 #if ENABLE(ASSERT) |
| 57 , m_didUpdateForChildren(false) | 49 , m_didUpdateForChildren(false) |
| 58 #endif | 50 #endif |
| 59 { | 51 { |
| 60 if (!supportsCachedOffsets(layoutView)) { | 52 if (!supportsCachedOffsets(layoutView)) { |
| 61 m_cachedOffsetsEnabled = false; | 53 m_cachedOffsetsEnabled = false; |
| 62 return; | 54 return; |
| 63 } | 55 } |
| 64 | 56 |
| 65 FloatPoint point = layoutView.localToAncestorPoint(FloatPoint(), &m_paintInv alidationContainer, TraverseDocumentBoundaries | InputIsInFrameCoordinates); | 57 FloatPoint point = layoutView.localToAncestorPoint(FloatPoint(), m_paintInva lidationContainer, TraverseDocumentBoundaries | InputIsInFrameCoordinates); |
| 66 m_paintOffset = LayoutSize(point.x(), point.y()); | 58 m_paintOffset = LayoutSize(point.x(), point.y()); |
| 67 } | 59 m_paintOffsetForAbsolutePosition = m_paintOffset; |
| 68 | |
| 69 // TODO(wangxianzhu): This is temporary for positioned object whose paintInvalid ationContainer is different from | |
| 70 // the one we find during tree walk. Remove this after we fix the issue with tre e walk in DOM-order. | |
| 71 PaintInvalidationState::PaintInvalidationState(const PaintInvalidationState& par entState, const LayoutBoxModelObject& currentObject, const LayoutBoxModelObject& paintInvalidationContainer) | |
| 72 : m_currentObject(currentObject) | |
| 73 , m_clipped(parentState.m_clipped) | |
| 74 , m_cachedOffsetsEnabled(parentState.m_cachedOffsetsEnabled) | |
| 75 , m_forcedSubtreeInvalidationWithinContainer(parentState.m_forcedSubtreeInva lidationWithinContainer) | |
| 76 , m_forcedSubtreeInvalidationRectUpdateWithinContainer(parentState.m_forcedS ubtreeInvalidationRectUpdateWithinContainer) | |
| 77 , m_clipRect(parentState.m_clipRect) | |
| 78 , m_paintOffset(parentState.m_paintOffset) | |
| 79 , m_paintInvalidationContainer(paintInvalidationContainer) | |
| 80 , m_svgTransform(parentState.m_svgTransform) | |
| 81 , m_pendingDelayedPaintInvalidations(parentState.pendingDelayedPaintInvalida tionTargets()) | |
| 82 , m_enclosingSelfPaintingLayer(parentState.enclosingSelfPaintingLayer(curren tObject)) | |
| 83 #if ENABLE(ASSERT) | |
| 84 , m_didUpdateForChildren(true) | |
| 85 #endif | |
| 86 { | |
| 87 ASSERT(parentState.m_didUpdateForChildren); | |
| 88 ASSERT(!m_cachedOffsetsEnabled); | |
| 89 } | 60 } |
| 90 | 61 |
| 91 PaintInvalidationState::PaintInvalidationState(const PaintInvalidationState& par entState, const LayoutObject& currentObject) | 62 PaintInvalidationState::PaintInvalidationState(const PaintInvalidationState& par entState, const LayoutObject& currentObject) |
| 92 : m_currentObject(currentObject) | 63 : m_currentObject(currentObject) |
| 93 , m_clipped(parentState.m_clipped) | |
| 94 , m_cachedOffsetsEnabled(parentState.m_cachedOffsetsEnabled) | |
| 95 , m_forcedSubtreeInvalidationWithinContainer(parentState.m_forcedSubtreeInva lidationWithinContainer) | 64 , m_forcedSubtreeInvalidationWithinContainer(parentState.m_forcedSubtreeInva lidationWithinContainer) |
| 96 , m_forcedSubtreeInvalidationRectUpdateWithinContainer(parentState.m_forcedS ubtreeInvalidationRectUpdateWithinContainer) | 65 , m_forcedSubtreeInvalidationRectUpdateWithinContainer(parentState.m_forcedS ubtreeInvalidationRectUpdateWithinContainer) |
| 66 , m_clipped(parentState.m_clipped) | |
| 67 , m_clippedForAbsolutePosition(parentState.m_clippedForAbsolutePosition) | |
| 97 , m_clipRect(parentState.m_clipRect) | 68 , m_clipRect(parentState.m_clipRect) |
| 69 , m_clipRectForAbsolutePosition(parentState.m_clipRectForAbsolutePosition) | |
| 98 , m_paintOffset(parentState.m_paintOffset) | 70 , m_paintOffset(parentState.m_paintOffset) |
| 99 , m_paintInvalidationContainer(currentObject.isPaintInvalidationContainer() ? toLayoutBoxModelObject(currentObject) : parentState.m_paintInvalidationContain er) | 71 , m_paintOffsetForAbsolutePosition(parentState.m_paintOffsetForAbsolutePosit ion) |
| 72 , m_cachedOffsetsEnabled(parentState.m_cachedOffsetsEnabled) | |
| 73 , m_cachedOffsetsForAbsolutePositionEnabled(parentState.m_cachedOffsetsForAb solutePositionEnabled) | |
| 74 , m_paintInvalidationContainer(parentState.m_paintInvalidationContainer) | |
| 75 , m_paintInvalidationContainerForStackedContents(parentState.m_paintInvalida tionContainerForStackedContents) | |
| 76 , m_containerForAbsolutePosition(currentObject.canContainAbsolutePositionObj ects() ? currentObject : parentState.m_containerForAbsolutePosition) | |
| 100 , m_svgTransform(parentState.m_svgTransform) | 77 , m_svgTransform(parentState.m_svgTransform) |
| 101 , m_pendingDelayedPaintInvalidations(parentState.pendingDelayedPaintInvalida tionTargets()) | 78 , m_pendingDelayedPaintInvalidations(parentState.pendingDelayedPaintInvalida tionTargets()) |
| 102 , m_enclosingSelfPaintingLayer(parentState.enclosingSelfPaintingLayer(curren tObject)) | 79 , m_enclosingSelfPaintingLayer(parentState.enclosingSelfPaintingLayer(curren tObject)) |
| 103 #if ENABLE(ASSERT) | 80 #if ENABLE(ASSERT) |
| 104 , m_didUpdateForChildren(false) | 81 , m_didUpdateForChildren(false) |
| 105 #endif | 82 #endif |
| 106 { | 83 { |
| 107 if (currentObject == parentState.m_currentObject) { | 84 if (currentObject == parentState.m_currentObject) { |
| 108 // Sometimes we create a new PaintInvalidationState from parentState on the same object | 85 // Sometimes we create a new PaintInvalidationState from parentState on the same object |
| 109 // (e.g. LayoutView, and the HorriblySlowRectMapping cases in LayoutBloc k::invalidatePaintOfSubtreesIfNeeded()). | 86 // (e.g. LayoutView, and the HorriblySlowRectMapping cases in LayoutBloc k::invalidatePaintOfSubtreesIfNeeded()). |
| 110 // TODO(wangxianzhu): Avoid this for RuntimeEnabledFeatures::slimmingPai ntInvalidationEnabled(). | 87 // TODO(wangxianzhu): Avoid this for RuntimeEnabledFeatures::slimmingPai ntInvalidationEnabled(). |
| 111 #if ENABLE(ASSERT) | 88 #if ENABLE(ASSERT) |
| 112 m_didUpdateForChildren = parentState.m_didUpdateForChildren; | 89 m_didUpdateForChildren = parentState.m_didUpdateForChildren; |
| 113 #endif | 90 #endif |
| 114 return; | 91 return; |
| 115 } | 92 } |
| 116 | 93 |
| 117 ASSERT(parentState.m_didUpdateForChildren); | 94 ASSERT(parentState.m_didUpdateForChildren); |
| 118 | 95 |
| 96 EPosition position = currentObject.styleRef().position(); | |
| 97 | |
| 98 if (currentObject.isPaintInvalidationContainer()) { | |
| 99 m_paintInvalidationContainer = toLayoutBoxModelObject(¤tObject); | |
| 100 if (currentObject.styleRef().isStackingContext()) { | |
| 101 m_paintInvalidationContainerForStackedContents = toLayoutBoxModelObj ect(¤tObject); | |
| 102 | |
| 103 // Disable cached offsets for absolute-position objects if this obje ct is not a container for | |
| 104 // absolute-position because absolute-position objects' locations ar e determined by something | |
| 105 // above their paint invalidation container. | |
| 106 if (m_currentObject != m_containerForAbsolutePosition) | |
|
chrishtr
2016/03/31 22:32:11
Can this slow path be avoided by adjusting m_paint
Xianzhu
2016/04/01 16:07:56
Good idea. Done.
| |
| 107 m_cachedOffsetsForAbsolutePositionEnabled = false; | |
| 108 } | |
| 109 } else if (currentObject.isLayoutView()) { | |
| 110 // m_paintInvalidationContainerForStackedContents is only for stacked de scendants in its own frame, | |
| 111 // because it doesn't establish stacking context for stacked contents in sub-frames. | |
| 112 // Contents stacked in the root stacking context in this frame should us e this frame's paintInvalidationContainer. | |
| 113 m_paintInvalidationContainerForStackedContents = m_paintInvalidationCont ainer; | |
|
chrishtr
2016/03/31 22:32:11
Does the m_cachedOffsetsForAbsolutePositionEnabled
Xianzhu
2016/04/01 16:07:56
No, because LayoutView resets both stacking contex
| |
| 114 } else if (currentObject.styleRef().isStacked() | |
| 115 // This is to exclude some objects (e.g. LayoutText) inheriting stacked style from parent but aren't actually stacked. | |
| 116 && currentObject.hasLayer() | |
| 117 && m_paintInvalidationContainer != m_paintInvalidationContainerForStacke dContents) { | |
| 118 // The current object is stacked, so we should use m_paintInvalidationCo ntainerForStackedContents as its | |
| 119 // paint invalidation container on which the current object is painted. | |
| 120 m_paintInvalidationContainer = m_paintInvalidationContainerForStackedCon tents; | |
| 121 // We are changing paintInvalidationContainer to m_paintInvalidationCont ainerForStackedContents. Must disable | |
| 122 // cached offsets because we didn't track paint offset from m_paintInval idationContainerForStackedContents. | |
| 123 m_cachedOffsetsEnabled = false; | |
| 124 } | |
| 125 | |
| 119 if (!currentObject.isBoxModelObject() && !currentObject.isSVG()) | 126 if (!currentObject.isBoxModelObject() && !currentObject.isSVG()) |
| 120 return; | 127 return; |
| 121 | 128 |
| 122 if (m_cachedOffsetsEnabled && !supportsCachedOffsets(currentObject)) | 129 if (m_cachedOffsetsEnabled || currentObject == m_paintInvalidationContainer) |
| 123 m_cachedOffsetsEnabled = false; | 130 m_cachedOffsetsEnabled = supportsCachedOffsets(currentObject); |
| 124 | 131 |
| 125 if (currentObject.isSVG()) { | 132 if (currentObject.isSVG()) { |
| 126 if (currentObject.isSVGRoot()) { | 133 if (currentObject.isSVGRoot()) { |
| 127 m_svgTransform = toLayoutSVGRoot(currentObject).localToBorderBoxTran sform(); | 134 m_svgTransform = toLayoutSVGRoot(currentObject).localToBorderBoxTran sform(); |
| 128 // Don't early return here, because the SVGRoot object needs to exec ute the later code | 135 // Don't early return here, because the SVGRoot object needs to exec ute the later code |
| 129 // as a normal LayoutBox. | 136 // as a normal LayoutBox. |
| 130 } else { | 137 } else { |
| 131 ASSERT(currentObject != m_paintInvalidationContainer); | 138 ASSERT(currentObject != m_paintInvalidationContainer); |
| 132 m_svgTransform *= currentObject.localToSVGParentTransform(); | 139 m_svgTransform *= currentObject.localToSVGParentTransform(); |
| 133 return; | 140 return; |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 151 return; | 158 return; |
| 152 | 159 |
| 153 if (currentObject.isLayoutView()) { | 160 if (currentObject.isLayoutView()) { |
| 154 ASSERT(&parentState.m_currentObject == toLayoutView(currentObject).frame ()->ownerLayoutObject()); | 161 ASSERT(&parentState.m_currentObject == toLayoutView(currentObject).frame ()->ownerLayoutObject()); |
| 155 m_paintOffset += toLayoutBox(parentState.m_currentObject).contentBoxOffs et(); | 162 m_paintOffset += toLayoutBox(parentState.m_currentObject).contentBoxOffs et(); |
| 156 // a LayoutView paints with a defined size but a pixel-rounded offset. | 163 // a LayoutView paints with a defined size but a pixel-rounded offset. |
| 157 m_paintOffset = LayoutSize(roundedIntSize(m_paintOffset)); | 164 m_paintOffset = LayoutSize(roundedIntSize(m_paintOffset)); |
| 158 return; | 165 return; |
| 159 } | 166 } |
| 160 | 167 |
| 168 if (position == FixedPosition) { | |
| 169 if (m_paintInvalidationContainer != currentObject.view() && m_paintInval idationContainer->view() == currentObject.view()) { | |
| 170 // TODO(crbug.com/598762): localToAncestorPoint() is incorrect for f ixed-position when paintInvalidationContainer | |
| 171 // is under the containing LayoutView. | |
| 172 m_cachedOffsetsEnabled = false; | |
| 173 return; | |
| 174 } | |
| 175 FloatPoint fixedOffset = currentObject.localToAncestorPoint(FloatPoint() , m_paintInvalidationContainer, TraverseDocumentBoundaries); | |
| 176 m_paintOffset = LayoutSize(fixedOffset.x(), fixedOffset.y()); | |
| 177 // Ancestor clippings are ignored for simplicity. | |
| 178 m_clipped = false; | |
| 179 return; | |
| 180 } | |
| 181 | |
| 182 if (position == AbsolutePosition) { | |
| 183 m_cachedOffsetsEnabled = m_cachedOffsetsForAbsolutePositionEnabled; | |
| 184 if (!m_cachedOffsetsEnabled) | |
| 185 return; | |
| 186 | |
| 187 m_paintOffset = m_paintOffsetForAbsolutePosition; | |
| 188 m_clipped = m_clippedForAbsolutePosition; | |
| 189 m_clipRect = m_clipRectForAbsolutePosition; | |
| 190 | |
| 191 const LayoutObject& container = parentState.m_containerForAbsolutePositi on; | |
| 192 if (container.isInFlowPositioned() && container.isLayoutInline()) | |
|
chrishtr
2016/03/31 22:32:11
What is this code for? Why a special case?
Xianzhu
2016/04/01 16:07:56
This is for
<span style="position: relative">
<d
| |
| 193 m_paintOffset += toLayoutInline(container).offsetForInFlowPositioned Inline(toLayoutBox(m_currentObject)); | |
| 194 } | |
| 195 | |
| 161 if (currentObject.isBox()) | 196 if (currentObject.isBox()) |
| 162 m_paintOffset += toLayoutBox(currentObject).locationOffset(); | 197 m_paintOffset += toLayoutBox(currentObject).locationOffset(); |
| 163 | 198 |
| 164 if (currentObject.isInFlowPositioned() && currentObject.hasLayer()) | 199 if (currentObject.isInFlowPositioned() && currentObject.hasLayer()) |
| 165 m_paintOffset += toLayoutBoxModelObject(currentObject).layer()->offsetFo rInFlowPosition(); | 200 m_paintOffset += toLayoutBoxModelObject(currentObject).layer()->offsetFo rInFlowPosition(); |
| 166 } | 201 } |
| 167 | 202 |
| 168 void PaintInvalidationState::updateForChildren() | 203 void PaintInvalidationState::updateForChildren() |
| 169 { | 204 { |
| 170 #if ENABLE(ASSERT) | 205 #if ENABLE(ASSERT) |
| 171 ASSERT(!m_didUpdateForChildren); | 206 ASSERT(!m_didUpdateForChildren); |
| 172 m_didUpdateForChildren = true; | 207 m_didUpdateForChildren = true; |
| 173 #endif | 208 #endif |
| 174 | 209 |
| 210 updateForNormalChildren(); | |
| 211 | |
| 212 if (m_currentObject == m_containerForAbsolutePosition) { | |
| 213 if (m_paintInvalidationContainer == m_paintInvalidationContainerForStack edContents) { | |
| 214 m_cachedOffsetsForAbsolutePositionEnabled = m_cachedOffsetsEnabled; | |
| 215 if (m_cachedOffsetsEnabled) { | |
| 216 m_paintOffsetForAbsolutePosition = m_paintOffset; | |
| 217 m_clippedForAbsolutePosition = m_clipped; | |
| 218 m_clipRectForAbsolutePosition = m_clipRect; | |
| 219 } | |
| 220 } else { | |
| 221 // Cached offsets for absolute-position are from m_paintInvalidation Container, | |
| 222 // which can't be used if the absolute-position descendants will use a different | |
| 223 // paintInvalidationContainer. | |
| 224 m_cachedOffsetsForAbsolutePositionEnabled = false; | |
| 225 } | |
| 226 } | |
| 227 } | |
| 228 | |
| 229 void PaintInvalidationState::updateForNormalChildren() | |
| 230 { | |
| 175 if (!m_cachedOffsetsEnabled) | 231 if (!m_cachedOffsetsEnabled) |
| 176 return; | 232 return; |
| 177 | 233 |
| 178 if (!m_currentObject.isBoxModelObject() && !m_currentObject.isSVG()) | 234 if (!m_currentObject.isBoxModelObject() && !m_currentObject.isSVG()) |
| 179 return; | 235 return; |
| 180 | 236 |
| 181 if (m_currentObject.isLayoutView()) { | 237 if (m_currentObject.isLayoutView()) { |
| 182 if (!m_currentObject.document().settings() || !m_currentObject.document( ).settings()->rootLayerScrolls()) { | 238 if (!m_currentObject.document().settings() || !m_currentObject.document( ).settings()->rootLayerScrolls()) { |
| 183 if (m_currentObject != m_paintInvalidationContainer) { | 239 if (m_currentObject != m_paintInvalidationContainer) { |
| 184 m_paintOffset -= toLayoutView(m_currentObject).frameView()->scro llOffset(); | 240 m_paintOffset -= toLayoutView(m_currentObject).frameView()->scro llOffset(); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 if (object.isLayoutView()) | 273 if (object.isLayoutView()) |
| 218 return toLayoutView(object).localToAncestorPoint(point, &ancestor, Trave rseDocumentBoundaries | InputIsInFrameCoordinates); | 274 return toLayoutView(object).localToAncestorPoint(point, &ancestor, Trave rseDocumentBoundaries | InputIsInFrameCoordinates); |
| 219 return object.localToAncestorPoint(point, &ancestor, TraverseDocumentBoundar ies); | 275 return object.localToAncestorPoint(point, &ancestor, TraverseDocumentBoundar ies); |
| 220 } | 276 } |
| 221 | 277 |
| 222 LayoutPoint PaintInvalidationState::computePositionFromPaintInvalidationBacking( ) const | 278 LayoutPoint PaintInvalidationState::computePositionFromPaintInvalidationBacking( ) const |
| 223 { | 279 { |
| 224 ASSERT(!m_didUpdateForChildren); | 280 ASSERT(!m_didUpdateForChildren); |
| 225 | 281 |
| 226 FloatPoint point; | 282 FloatPoint point; |
| 227 if (m_paintInvalidationContainer != m_currentObject) { | 283 if (m_paintInvalidationContainer != &m_currentObject) { |
| 228 if (m_cachedOffsetsEnabled) { | 284 if (m_cachedOffsetsEnabled) { |
| 229 if (m_currentObject.isSVG() && !m_currentObject.isSVGRoot()) | 285 if (m_currentObject.isSVG() && !m_currentObject.isSVGRoot()) |
| 230 point = m_svgTransform.mapPoint(point); | 286 point = m_svgTransform.mapPoint(point); |
| 231 point += FloatPoint(m_paintOffset); | 287 point += FloatPoint(m_paintOffset); |
| 232 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH | 288 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH |
| 233 // TODO(wangxianzhu): We can't enable this ASSERT for now because of crbug.com/597745. | 289 // TODO(wangxianzhu): We can't enable this ASSERT for now because of crbug.com/597745. |
| 234 // ASSERT(point == slowLocalOriginToAncestorPoint(m_currentObject, m _paintInvalidationContainer, FloatPoint()); | 290 // ASSERT(point == slowLocalOriginToAncestorPoint(m_currentObject, m _paintInvalidationContainer, FloatPoint()); |
| 235 #endif | 291 #endif |
| 236 } else { | 292 } else { |
| 237 point = slowLocalToAncestorPoint(m_currentObject, m_paintInvalidatio nContainer, FloatPoint()); | 293 point = slowLocalToAncestorPoint(m_currentObject, *m_paintInvalidati onContainer, FloatPoint()); |
| 238 } | 294 } |
| 239 } | 295 } |
| 240 | 296 |
| 241 if (m_paintInvalidationContainer.layer()->groupedMapping()) | 297 if (m_paintInvalidationContainer->layer()->groupedMapping()) |
| 242 PaintLayer::mapPointInPaintInvalidationContainerToBacking(m_paintInvalid ationContainer, point); | 298 PaintLayer::mapPointInPaintInvalidationContainerToBacking(*m_paintInvali dationContainer, point); |
| 243 | 299 |
| 244 return LayoutPoint(point); | 300 return LayoutPoint(point); |
| 245 } | 301 } |
| 246 | 302 |
| 247 LayoutRect PaintInvalidationState::computePaintInvalidationRectInBacking() const | 303 LayoutRect PaintInvalidationState::computePaintInvalidationRectInBacking() const |
| 248 { | 304 { |
| 249 ASSERT(!m_didUpdateForChildren); | 305 ASSERT(!m_didUpdateForChildren); |
| 250 | 306 |
| 251 if (m_currentObject.isSVG() && !m_currentObject.isSVGRoot()) | 307 if (m_currentObject.isSVG() && !m_currentObject.isSVGRoot()) |
| 252 return computePaintInvalidationRectInBackingForSVG(); | 308 return computePaintInvalidationRectInBackingForSVG(); |
| 253 | 309 |
| 254 LayoutRect rect = m_currentObject.localOverflowRectForPaintInvalidation(); | 310 LayoutRect rect = m_currentObject.localOverflowRectForPaintInvalidation(); |
| 255 mapLocalRectToPaintInvalidationBacking(rect); | 311 mapLocalRectToPaintInvalidationBacking(rect); |
| 256 return rect; | 312 return rect; |
| 257 } | 313 } |
| 258 | 314 |
| 259 LayoutRect PaintInvalidationState::computePaintInvalidationRectInBackingForSVG() const | 315 LayoutRect PaintInvalidationState::computePaintInvalidationRectInBackingForSVG() const |
| 260 { | 316 { |
| 261 LayoutRect rect; | 317 LayoutRect rect; |
| 262 if (m_cachedOffsetsEnabled) { | 318 if (m_cachedOffsetsEnabled) { |
| 263 FloatRect svgRect = SVGLayoutSupport::localOverflowRectForPaintInvalidat ion(m_currentObject); | 319 FloatRect svgRect = SVGLayoutSupport::localOverflowRectForPaintInvalidat ion(m_currentObject); |
| 264 rect = SVGLayoutSupport::transformPaintInvalidationRect(m_currentObject, m_svgTransform, svgRect); | 320 rect = SVGLayoutSupport::transformPaintInvalidationRect(m_currentObject, m_svgTransform, svgRect); |
| 265 rect.move(m_paintOffset); | 321 rect.move(m_paintOffset); |
| 266 if (m_clipped) | 322 if (m_clipped) |
| 267 rect.intersect(m_clipRect); | 323 rect.intersect(m_clipRect); |
| 268 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH | 324 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH |
| 269 LayoutRect slowPathRect = SVGLayoutSupport::clippedOverflowRectForPaintI nvalidation(m_currentObject, m_paintInvalidationContainer); | 325 LayoutRect slowPathRect = SVGLayoutSupport::clippedOverflowRectForPaintI nvalidation(m_currentObject, *m_paintInvalidationContainer); |
| 270 // TODO(crbug.com/597902): Slow path misses clipping of paintInvalidatio nContainer. | 326 // TODO(crbug.com/597902): Slow path misses clipping of paintInvalidatio nContainer. |
| 271 if (m_clipped) | 327 if (m_clipped) |
| 272 slowPathRect.intersect(m_clipRect); | 328 slowPathRect.intersect(m_clipRect); |
| 273 // TODO(crbug.com/597903): Fast path and slow path should generate equal empty rects. | 329 // TODO(crbug.com/597903): Fast path and slow path should generate equal empty rects. |
| 274 ASSERT((rect.isEmpty() && slowPathRect.isEmpty()) || rect == slowPathRec t); | 330 ASSERT((rect.isEmpty() && slowPathRect.isEmpty()) || rect == slowPathRec t); |
| 275 #endif | 331 #endif |
| 276 } else { | 332 } else { |
| 277 // TODO(wangxianzhu): Sometimes m_cachedOffsetsEnabled==false doesn't me an we can't use cached | 333 // TODO(wangxianzhu): Sometimes m_cachedOffsetsEnabled==false doesn't me an we can't use cached |
| 278 // m_svgTransform. We can use hybrid fast-path (for SVG) and slow-path ( for things above the SVGRoot). | 334 // m_svgTransform. We can use hybrid fast-path (for SVG) and slow-path ( for things above the SVGRoot). |
| 279 rect = SVGLayoutSupport::clippedOverflowRectForPaintInvalidation(m_curre ntObject, m_paintInvalidationContainer); | 335 rect = SVGLayoutSupport::clippedOverflowRectForPaintInvalidation(m_curre ntObject, *m_paintInvalidationContainer); |
| 280 } | 336 } |
| 281 | 337 |
| 282 if (m_paintInvalidationContainer.layer()->groupedMapping()) | 338 if (m_paintInvalidationContainer->layer()->groupedMapping()) |
| 283 PaintLayer::mapRectInPaintInvalidationContainerToBacking(m_paintInvalida tionContainer, rect); | 339 PaintLayer::mapRectInPaintInvalidationContainerToBacking(*m_paintInvalid ationContainer, rect); |
| 284 return rect; | 340 return rect; |
| 285 } | 341 } |
| 286 | 342 |
| 287 static void slowMapToVisualRectInAncestorSpace(const LayoutObject& object, const LayoutBoxModelObject& ancestor, LayoutRect& rect) | 343 static void slowMapToVisualRectInAncestorSpace(const LayoutObject& object, const LayoutBoxModelObject& ancestor, LayoutRect& rect) |
| 288 { | 344 { |
| 289 // TODO(crbug.com/597965): LayoutBox::mapToVisualRectInAncestorSpace() incor rectly flips a rect | 345 // TODO(crbug.com/597965): LayoutBox::mapToVisualRectInAncestorSpace() incor rectly flips a rect |
| 290 // in its own space for writing mode. Here flip to workaround the flip. | 346 // in its own space for writing mode. Here flip to workaround the flip. |
| 291 if (object.isBox() && (toLayoutBox(object).isWritingModeRoot() || (ancestor == object && object.styleRef().isFlippedBlocksWritingMode()))) | 347 if (object.isBox() && (toLayoutBox(object).isWritingModeRoot() || (ancestor == object && object.styleRef().isFlippedBlocksWritingMode()))) |
| 292 toLayoutBox(object).flipForWritingMode(rect); | 348 toLayoutBox(object).flipForWritingMode(rect); |
| 293 | 349 |
| 294 if (object.isLayoutView()) { | 350 if (object.isLayoutView()) { |
| 295 toLayoutView(object).mapToVisualRectInAncestorSpace(&ancestor, rect, Inp utIsInFrameCoordinates, DefaultVisualRectFlags); | 351 toLayoutView(object).mapToVisualRectInAncestorSpace(&ancestor, rect, Inp utIsInFrameCoordinates, DefaultVisualRectFlags); |
| 296 } else if (object.isSVGRoot()) { | 352 } else if (object.isSVGRoot()) { |
| 297 // TODO(crbug.com/597813): This is to avoid the extra clip applied in La youtSVGRoot::mapVisibleRectInAncestorSpace(). | 353 // TODO(crbug.com/597813): This is to avoid the extra clip applied in La youtSVGRoot::mapVisibleRectInAncestorSpace(). |
| 298 toLayoutSVGRoot(object).LayoutReplaced::mapToVisualRectInAncestorSpace(& ancestor, rect); | 354 toLayoutSVGRoot(object).LayoutReplaced::mapToVisualRectInAncestorSpace(& ancestor, rect); |
| 299 } else { | 355 } else { |
| 300 object.mapToVisualRectInAncestorSpace(&ancestor, rect); | 356 object.mapToVisualRectInAncestorSpace(&ancestor, rect); |
| 301 } | 357 } |
| 302 } | 358 } |
| 303 | 359 |
| 304 void PaintInvalidationState::mapLocalRectToPaintInvalidationBacking(LayoutRect& rect) const | 360 void PaintInvalidationState::mapLocalRectToPaintInvalidationBacking(LayoutRect& rect) const |
| 305 { | 361 { |
| 306 ASSERT(!m_didUpdateForChildren); | 362 ASSERT(!m_didUpdateForChildren); |
| 307 | 363 |
| 308 if (m_cachedOffsetsEnabled) { | 364 if (m_cachedOffsetsEnabled) { |
| 309 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH | 365 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH |
| 310 LayoutRect slowPathRect(rect); | 366 LayoutRect slowPathRect(rect); |
| 311 slowMapToVisualRectInAncestorSpace(m_currentObject, m_paintInvalidationC ontainer, slowPathRect); | 367 slowMapToVisualRectInAncestorSpace(m_currentObject, *m_paintInvalidation Container, slowPathRect); |
| 312 #endif | 368 #endif |
| 313 rect.move(m_paintOffset); | 369 rect.move(m_paintOffset); |
| 314 if (m_clipped) | 370 if (m_clipped) |
| 315 rect.intersect(m_clipRect); | 371 rect.intersect(m_clipRect); |
| 316 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH | 372 #if ASSERT_SAME_RESULT_SLOW_AND_FAST_PATH |
| 317 // Make sure that the fast path and the slow path generate the same rect . | 373 // Make sure that the fast path and the slow path generate the same rect . |
| 318 // TODO(crbug.com/597902): Slow path misses clipping of paintInvalidatio nContainer. | 374 // TODO(crbug.com/597902): Slow path misses clipping of paintInvalidatio nContainer. |
| 319 if (m_clipped) | 375 if (m_clipped) |
| 320 slowPathRect.intersect(m_clipRect); | 376 slowPathRect.intersect(m_clipRect); |
| 321 // TODO(wangxianzhu): The isLayoutView() condition is for cases that a s ub-frame creates a | 377 // TODO(wangxianzhu): The isLayoutView() condition is for cases that a s ub-frame creates a |
| 322 // root PaintInvalidationState which doesn't inherit clip from ancestor frames. | 378 // root PaintInvalidationState which doesn't inherit clip from ancestor frames. |
| 323 // Remove the condition when we eliminate the latter case of PaintInvali dationState(const LayoutView&, ...). | 379 // Remove the condition when we eliminate the latter case of PaintInvali dationState(const LayoutView&, ...). |
| 380 // We ignore ancestor clipping for FixedPosition in fast path. | |
| 324 // TODO(crbug.com/597903): Fast path and slow path should generate equal empty rects. | 381 // TODO(crbug.com/597903): Fast path and slow path should generate equal empty rects. |
| 325 ASSERT(m_currentObject.isLayoutView() || (rect.isEmpty() && slowPathRect .isEmpty()) || rect == slowPathRect); | 382 ASSERT(m_currentObject.isLayoutView() || m_currentObject.styleRef().posi tion() == FixedPosition || (rect.isEmpty() && slowPathRect.isEmpty()) || rect == slowPathRect); |
| 326 #endif | 383 #endif |
| 327 } else { | 384 } else { |
| 328 slowMapToVisualRectInAncestorSpace(m_currentObject, m_paintInvalidationC ontainer, rect); | 385 slowMapToVisualRectInAncestorSpace(m_currentObject, *m_paintInvalidation Container, rect); |
| 329 } | 386 } |
| 330 | 387 |
| 331 if (m_paintInvalidationContainer.layer()->groupedMapping()) | 388 if (m_paintInvalidationContainer->layer()->groupedMapping()) |
| 332 PaintLayer::mapRectInPaintInvalidationContainerToBacking(m_paintInvalida tionContainer, rect); | 389 PaintLayer::mapRectInPaintInvalidationContainerToBacking(*m_paintInvalid ationContainer, rect); |
| 333 } | 390 } |
| 334 | 391 |
| 335 void PaintInvalidationState::addClipRectRelativeToPaintOffset(const LayoutRect& localClipRect) | 392 void PaintInvalidationState::addClipRectRelativeToPaintOffset(const LayoutRect& localClipRect) |
| 336 { | 393 { |
| 337 LayoutRect clipRect = localClipRect; | 394 LayoutRect clipRect = localClipRect; |
| 338 clipRect.move(m_paintOffset); | 395 clipRect.move(m_paintOffset); |
| 339 if (m_clipped) { | 396 if (m_clipped) { |
| 340 m_clipRect.intersect(clipRect); | 397 m_clipRect.intersect(clipRect); |
| 341 } else { | 398 } else { |
| 342 m_clipRect = clipRect; | 399 m_clipRect = clipRect; |
| 343 m_clipped = true; | 400 m_clipped = true; |
| 344 } | 401 } |
| 345 } | 402 } |
| 346 | 403 |
| 347 PaintLayer& PaintInvalidationState::enclosingSelfPaintingLayer(const LayoutObjec t& layoutObject) const | 404 PaintLayer& PaintInvalidationState::enclosingSelfPaintingLayer(const LayoutObjec t& layoutObject) const |
| 348 { | 405 { |
| 349 if (layoutObject.hasLayer() && toLayoutBoxModelObject(layoutObject).hasSelfP aintingLayer()) | 406 if (layoutObject.hasLayer() && toLayoutBoxModelObject(layoutObject).hasSelfP aintingLayer()) |
| 350 return *toLayoutBoxModelObject(layoutObject).layer(); | 407 return *toLayoutBoxModelObject(layoutObject).layer(); |
| 351 | 408 |
| 352 return m_enclosingSelfPaintingLayer; | 409 return m_enclosingSelfPaintingLayer; |
| 353 } | 410 } |
| 354 | 411 |
| 355 } // namespace blink | 412 } // namespace blink |
| OLD | NEW |