OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
3 * | 3 * |
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
5 * | 5 * |
6 * Other contributors: | 6 * Other contributors: |
7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 , m_hasVisibleContent(false) | 118 , m_hasVisibleContent(false) |
119 , m_visibleDescendantStatusDirty(false) | 119 , m_visibleDescendantStatusDirty(false) |
120 , m_hasVisibleDescendant(false) | 120 , m_hasVisibleDescendant(false) |
121 , m_hasVisibleNonLayerContent(false) | 121 , m_hasVisibleNonLayerContent(false) |
122 , m_isPaginated(false) | 122 , m_isPaginated(false) |
123 , m_3DTransformedDescendantStatusDirty(true) | 123 , m_3DTransformedDescendantStatusDirty(true) |
124 , m_has3DTransformedDescendant(false) | 124 , m_has3DTransformedDescendant(false) |
125 , m_containsDirtyOverlayScrollbars(false) | 125 , m_containsDirtyOverlayScrollbars(false) |
126 , m_canSkipRepaintRectsUpdateOnScroll(renderer->isTableCell()) | 126 , m_canSkipRepaintRectsUpdateOnScroll(renderer->isTableCell()) |
127 , m_hasFilterInfo(false) | 127 , m_hasFilterInfo(false) |
| 128 , m_shouldIsolateCompositedDescendants(false) |
128 , m_blendMode(BlendModeNormal) | 129 , m_blendMode(BlendModeNormal) |
129 , m_renderer(renderer) | 130 , m_renderer(renderer) |
130 , m_parent(0) | 131 , m_parent(0) |
131 , m_previous(0) | 132 , m_previous(0) |
132 , m_next(0) | 133 , m_next(0) |
133 , m_first(0) | 134 , m_first(0) |
134 , m_last(0) | 135 , m_last(0) |
135 , m_staticInlinePosition(0) | 136 , m_staticInlinePosition(0) |
136 , m_staticBlockPosition(0) | 137 , m_staticBlockPosition(0) |
137 , m_enclosingPaginationLayer(0) | 138 , m_enclosingPaginationLayer(0) |
(...skipping 4025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4163 } | 4164 } |
4164 } | 4165 } |
4165 | 4166 |
4166 void showLayerTree(const WebCore::RenderObject* renderer) | 4167 void showLayerTree(const WebCore::RenderObject* renderer) |
4167 { | 4168 { |
4168 if (!renderer) | 4169 if (!renderer) |
4169 return; | 4170 return; |
4170 showLayerTree(renderer->enclosingLayer()); | 4171 showLayerTree(renderer->enclosingLayer()); |
4171 } | 4172 } |
4172 #endif | 4173 #endif |
OLD | NEW |