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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 , m_visibleContentStatusDirty(true) | 121 , m_visibleContentStatusDirty(true) |
122 , m_hasVisibleContent(false) | 122 , m_hasVisibleContent(false) |
123 , m_visibleDescendantStatusDirty(false) | 123 , m_visibleDescendantStatusDirty(false) |
124 , m_hasVisibleDescendant(false) | 124 , m_hasVisibleDescendant(false) |
125 , m_isPaginated(false) | 125 , m_isPaginated(false) |
126 , m_3DTransformedDescendantStatusDirty(true) | 126 , m_3DTransformedDescendantStatusDirty(true) |
127 , m_has3DTransformedDescendant(false) | 127 , m_has3DTransformedDescendant(false) |
128 , m_containsDirtyOverlayScrollbars(false) | 128 , m_containsDirtyOverlayScrollbars(false) |
129 , m_canSkipRepaintRectsUpdateOnScroll(renderer->isTableCell()) | 129 , m_canSkipRepaintRectsUpdateOnScroll(renderer->isTableCell()) |
130 , m_hasFilterInfo(false) | 130 , m_hasFilterInfo(false) |
| 131 , m_hasCompositedBlendingDescendants(false) |
131 , m_blendMode(BlendModeNormal) | 132 , m_blendMode(BlendModeNormal) |
132 , m_renderer(renderer) | 133 , m_renderer(renderer) |
133 , m_parent(0) | 134 , m_parent(0) |
134 , m_previous(0) | 135 , m_previous(0) |
135 , m_next(0) | 136 , m_next(0) |
136 , m_first(0) | 137 , m_first(0) |
137 , m_last(0) | 138 , m_last(0) |
138 , m_staticInlinePosition(0) | 139 , m_staticInlinePosition(0) |
139 , m_staticBlockPosition(0) | 140 , m_staticBlockPosition(0) |
140 , m_enclosingPaginationLayer(0) | 141 , m_enclosingPaginationLayer(0) |
(...skipping 4199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4340 } | 4341 } |
4341 } | 4342 } |
4342 | 4343 |
4343 void showLayerTree(const WebCore::RenderObject* renderer) | 4344 void showLayerTree(const WebCore::RenderObject* renderer) |
4344 { | 4345 { |
4345 if (!renderer) | 4346 if (!renderer) |
4346 return; | 4347 return; |
4347 showLayerTree(renderer->enclosingLayer()); | 4348 showLayerTree(renderer->enclosingLayer()); |
4348 } | 4349 } |
4349 #endif | 4350 #endif |
OLD | NEW |