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, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 #include "config.h" | 21 #include "config.h" |
22 #include "core/rendering/RenderView.h" | 22 #include "core/rendering/RenderView.h" |
23 | 23 |
24 #include "Document.h" | |
25 #include "Element.h" | |
26 #include "HTMLFrameOwnerElement.h" | 24 #include "HTMLFrameOwnerElement.h" |
27 #include "HTMLIFrameElement.h" | 25 #include "HTMLIFrameElement.h" |
28 #include "WebCoreMemoryInstrumentation.h" | 26 #include "core/dom/Document.h" |
| 27 #include "core/dom/Element.h" |
| 28 #include "core/dom/WebCoreMemoryInstrumentation.h" |
29 #include "core/page/Frame.h" | 29 #include "core/page/Frame.h" |
30 #include "core/page/FrameView.h" | 30 #include "core/page/FrameView.h" |
31 #include "core/page/Page.h" | 31 #include "core/page/Page.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/transforms/TransformState.h" | 34 #include "core/platform/graphics/transforms/TransformState.h" |
35 #include "core/rendering/ColumnInfo.h" | 35 #include "core/rendering/ColumnInfo.h" |
36 #include "core/rendering/FlowThreadController.h" | 36 #include "core/rendering/FlowThreadController.h" |
37 #include "core/rendering/HitTestResult.h" | 37 #include "core/rendering/HitTestResult.h" |
38 #include "core/rendering/RenderGeometryMap.h" | 38 #include "core/rendering/RenderGeometryMap.h" |
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1174 #endif | 1174 #endif |
1175 | 1175 |
1176 if (layoutState) | 1176 if (layoutState) |
1177 layoutState->m_isPaginated = m_fragmenting; | 1177 layoutState->m_isPaginated = m_fragmenting; |
1178 | 1178 |
1179 if (m_flowThreadState != RenderObject::NotInsideFlowThread) | 1179 if (m_flowThreadState != RenderObject::NotInsideFlowThread) |
1180 m_root->setFlowThreadStateIncludingDescendants(m_flowThreadState); | 1180 m_root->setFlowThreadStateIncludingDescendants(m_flowThreadState); |
1181 } | 1181 } |
1182 | 1182 |
1183 } // namespace WebCore | 1183 } // namespace WebCore |
OLD | NEW |