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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 , m_usedTransparency(false) | 86 , m_usedTransparency(false) |
87 , m_3DTransformedDescendantStatusDirty(true) | 87 , m_3DTransformedDescendantStatusDirty(true) |
88 , m_has3DTransformedDescendant(false) | 88 , m_has3DTransformedDescendant(false) |
89 , m_hasFilterInfo(false) | 89 , m_hasFilterInfo(false) |
90 , m_renderer(renderer) | 90 , m_renderer(renderer) |
91 , m_parent(0) | 91 , m_parent(0) |
92 , m_previous(0) | 92 , m_previous(0) |
93 , m_next(0) | 93 , m_next(0) |
94 , m_first(0) | 94 , m_first(0) |
95 , m_last(0) | 95 , m_last(0) |
96 , m_staticInlinePosition(0) | |
97 , m_staticBlockPosition(0) | |
98 , m_clipper(*renderer) | 96 , m_clipper(*renderer) |
99 { | 97 { |
100 updateStackingNode(); | 98 updateStackingNode(); |
101 | 99 |
102 m_isSelfPaintingLayer = shouldBeSelfPaintingLayer(); | 100 m_isSelfPaintingLayer = shouldBeSelfPaintingLayer(); |
103 } | 101 } |
104 | 102 |
105 RenderLayer::~RenderLayer() | 103 RenderLayer::~RenderLayer() |
106 { | 104 { |
107 removeFilterInfoIfNeeded(); | 105 removeFilterInfoIfNeeded(); |
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1051 } | 1049 } |
1052 } | 1050 } |
1053 | 1051 |
1054 void showLayerTree(const blink::RenderObject* renderer) | 1052 void showLayerTree(const blink::RenderObject* renderer) |
1055 { | 1053 { |
1056 if (!renderer) | 1054 if (!renderer) |
1057 return; | 1055 return; |
1058 showLayerTree(renderer->enclosingLayer()); | 1056 showLayerTree(renderer->enclosingLayer()); |
1059 } | 1057 } |
1060 #endif | 1058 #endif |
OLD | NEW |