OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
4 * | 4 * |
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
6 * | 6 * |
7 * Other contributors: | 7 * Other contributors: |
8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 void updateLayerPositionRecursive(UpdateLayerPositionsFlags = CheckForRepain
t); | 170 void updateLayerPositionRecursive(UpdateLayerPositionsFlags = CheckForRepain
t); |
171 | 171 |
172 bool isPaginated() const { return m_isPaginated; } | 172 bool isPaginated() const { return m_isPaginated; } |
173 RenderLayer* enclosingPaginationLayer() const { return m_enclosingPagination
Layer; } | 173 RenderLayer* enclosingPaginationLayer() const { return m_enclosingPagination
Layer; } |
174 | 174 |
175 void updateTransform(); | 175 void updateTransform(); |
176 RenderLayer* renderingContextRoot(); | 176 RenderLayer* renderingContextRoot(); |
177 | 177 |
178 const LayoutSize& offsetForInFlowPosition() const { return m_offsetForInFlow
Position; } | 178 const LayoutSize& offsetForInFlowPosition() const { return m_offsetForInFlow
Position; } |
179 | 179 |
| 180 void blockSelectionGapsBoundsChanged(); |
180 void addBlockSelectionGapsBounds(const LayoutRect&); | 181 void addBlockSelectionGapsBounds(const LayoutRect&); |
181 void clearBlockSelectionGapsBounds(); | 182 void clearBlockSelectionGapsBounds(); |
182 void repaintBlockSelectionGaps(); | 183 void repaintBlockSelectionGaps(); |
| 184 IntRect blockSelectionGapsBounds() const; |
183 bool hasBlockSelectionGapBounds() const; | 185 bool hasBlockSelectionGapBounds() const; |
184 | 186 |
185 RenderLayerStackingNode* stackingNode() { return m_stackingNode.get(); } | 187 RenderLayerStackingNode* stackingNode() { return m_stackingNode.get(); } |
186 const RenderLayerStackingNode* stackingNode() const { return m_stackingNode.
get(); } | 188 const RenderLayerStackingNode* stackingNode() const { return m_stackingNode.
get(); } |
187 | 189 |
188 bool subtreeIsInvisible() const { return !hasVisibleContent() && !hasVisible
Descendant(); } | 190 bool subtreeIsInvisible() const { return !hasVisibleContent() && !hasVisible
Descendant(); } |
189 | 191 |
190 // FIXME: We should ASSERT(!m_visibleContentStatusDirty) here, but see https
://bugs.webkit.org/show_bug.cgi?id=71044 | 192 // FIXME: We should ASSERT(!m_visibleContentStatusDirty) here, but see https
://bugs.webkit.org/show_bug.cgi?id=71044 |
191 // ditto for hasVisibleDescendant(), see https://bugs.webkit.org/show_bug.cg
i?id=71277 | 193 // ditto for hasVisibleDescendant(), see https://bugs.webkit.org/show_bug.cg
i?id=71277 |
192 bool hasVisibleContent() const { return m_hasVisibleContent; } | 194 bool hasVisibleContent() const { return m_hasVisibleContent; } |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
723 | 725 |
724 } // namespace WebCore | 726 } // namespace WebCore |
725 | 727 |
726 #ifndef NDEBUG | 728 #ifndef NDEBUG |
727 // Outside the WebCore namespace for ease of invocation from gdb. | 729 // Outside the WebCore namespace for ease of invocation from gdb. |
728 void showLayerTree(const WebCore::RenderLayer*); | 730 void showLayerTree(const WebCore::RenderLayer*); |
729 void showLayerTree(const WebCore::RenderObject*); | 731 void showLayerTree(const WebCore::RenderObject*); |
730 #endif | 732 #endif |
731 | 733 |
732 #endif // RenderLayer_h | 734 #endif // RenderLayer_h |
OLD | NEW |