| 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 1750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1761 m_stackingNode->updateIsNormalFlowOnly(); | 1761 m_stackingNode->updateIsNormalFlowOnly(); |
| 1762 updateSelfPaintingLayer(); | 1762 updateSelfPaintingLayer(); |
| 1763 | 1763 |
| 1764 if (m_stackingNode->isStackingContainer()) | 1764 if (m_stackingNode->isStackingContainer()) |
| 1765 m_stackingNode->dirtyZOrderLists(); | 1765 m_stackingNode->dirtyZOrderLists(); |
| 1766 else | 1766 else |
| 1767 m_stackingNode->clearZOrderLists(); | 1767 m_stackingNode->clearZOrderLists(); |
| 1768 | 1768 |
| 1769 m_stackingNode->dirtyStackingContainerZOrderLists(); | 1769 m_stackingNode->dirtyStackingContainerZOrderLists(); |
| 1770 | 1770 |
| 1771 compositor()->setNeedsToRecomputeCompositingRequirements(); | 1771 compositor()->setShouldReevaluateCompositingAfterLayout(); |
| 1772 compositor()->setCompositingLayersNeedRebuild(); | 1772 compositor()->setCompositingLayersNeedRebuild(); |
| 1773 } | 1773 } |
| 1774 | 1774 |
| 1775 void RenderLayer::updateReflectionInfo(const RenderStyle* oldStyle) | 1775 void RenderLayer::updateReflectionInfo(const RenderStyle* oldStyle) |
| 1776 { | 1776 { |
| 1777 if (renderer()->hasReflection()) { | 1777 if (renderer()->hasReflection()) { |
| 1778 if (!m_reflectionInfo) | 1778 if (!m_reflectionInfo) |
| 1779 m_reflectionInfo = adoptPtr(new RenderLayerReflectionInfo(toRenderBo
x(renderer()))); | 1779 m_reflectionInfo = adoptPtr(new RenderLayerReflectionInfo(toRenderBo
x(renderer()))); |
| 1780 m_reflectionInfo->updateAfterStyleChange(oldStyle); | 1780 m_reflectionInfo->updateAfterStyleChange(oldStyle); |
| 1781 } else if (m_reflectionInfo) { | 1781 } else if (m_reflectionInfo) { |
| (...skipping 2412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4194 } | 4194 } |
| 4195 } | 4195 } |
| 4196 | 4196 |
| 4197 void showLayerTree(const WebCore::RenderObject* renderer) | 4197 void showLayerTree(const WebCore::RenderObject* renderer) |
| 4198 { | 4198 { |
| 4199 if (!renderer) | 4199 if (!renderer) |
| 4200 return; | 4200 return; |
| 4201 showLayerTree(renderer->enclosingLayer()); | 4201 showLayerTree(renderer->enclosingLayer()); |
| 4202 } | 4202 } |
| 4203 #endif | 4203 #endif |
| OLD | NEW |