| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "core/dom/Document.h" | 24 #include "core/dom/Document.h" |
| 25 #include "core/dom/Element.h" | 25 #include "core/dom/Element.h" |
| 26 #include "core/html/HTMLFrameOwnerElement.h" | 26 #include "core/html/HTMLFrameOwnerElement.h" |
| 27 #include "core/html/HTMLIFrameElement.h" | 27 #include "core/html/HTMLIFrameElement.h" |
| 28 #include "core/page/Frame.h" | 28 #include "core/page/Frame.h" |
| 29 #include "core/page/FrameView.h" | 29 #include "core/page/FrameView.h" |
| 30 #include "core/page/Page.h" | 30 #include "core/page/Page.h" |
| 31 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" | 31 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" |
| 32 #include "core/platform/graphics/FloatQuad.h" | 32 #include "core/platform/graphics/FloatQuad.h" |
| 33 #include "core/platform/graphics/GraphicsContext.h" | 33 #include "core/platform/graphics/GraphicsContext.h" |
| 34 #include "core/platform/graphics/GraphicsContextAnnotation.h" |
| 34 #include "core/platform/graphics/transforms/TransformState.h" | 35 #include "core/platform/graphics/transforms/TransformState.h" |
| 35 #include "core/rendering/ColumnInfo.h" | 36 #include "core/rendering/ColumnInfo.h" |
| 36 #include "core/rendering/FlowThreadController.h" | 37 #include "core/rendering/FlowThreadController.h" |
| 37 #include "core/rendering/HitTestResult.h" | 38 #include "core/rendering/HitTestResult.h" |
| 38 #include "core/rendering/RenderGeometryMap.h" | 39 #include "core/rendering/RenderGeometryMap.h" |
| 39 #include "core/rendering/RenderLayer.h" | 40 #include "core/rendering/RenderLayer.h" |
| 40 #include "core/rendering/RenderLayerBacking.h" | 41 #include "core/rendering/RenderLayerBacking.h" |
| 41 #include "core/rendering/RenderLayerCompositor.h" | 42 #include "core/rendering/RenderLayerCompositor.h" |
| 42 #include "core/rendering/RenderLazyBlock.h" | 43 #include "core/rendering/RenderLazyBlock.h" |
| 43 #include "core/rendering/RenderSelectionInfo.h" | 44 #include "core/rendering/RenderSelectionInfo.h" |
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 #endif | 1144 #endif |
| 1144 | 1145 |
| 1145 if (layoutState) | 1146 if (layoutState) |
| 1146 layoutState->m_isPaginated = m_fragmenting; | 1147 layoutState->m_isPaginated = m_fragmenting; |
| 1147 | 1148 |
| 1148 if (m_flowThreadState != RenderObject::NotInsideFlowThread) | 1149 if (m_flowThreadState != RenderObject::NotInsideFlowThread) |
| 1149 m_root->setFlowThreadStateIncludingDescendants(m_flowThreadState); | 1150 m_root->setFlowThreadStateIncludingDescendants(m_flowThreadState); |
| 1150 } | 1151 } |
| 1151 | 1152 |
| 1152 } // namespace WebCore | 1153 } // namespace WebCore |
| OLD | NEW |