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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 // Otherwise, per-descendant repaint is more likely to avoid unnecessary ful
l repaints. | 194 // Otherwise, per-descendant repaint is more likely to avoid unnecessary ful
l repaints. |
195 | 195 |
196 if (shouldUsePrintingLayout()) | 196 if (shouldUsePrintingLayout()) |
197 return true; | 197 return true; |
198 | 198 |
199 if (!style()->isHorizontalWritingMode() || width() != viewWidth()) | 199 if (!style()->isHorizontalWritingMode() || width() != viewWidth()) |
200 return true; | 200 return true; |
201 | 201 |
202 if (height() != viewHeight()) { | 202 if (height() != viewHeight()) { |
203 if (RenderObject* backgroundRenderer = this->backgroundRenderer()) { | 203 if (RenderObject* backgroundRenderer = this->backgroundRenderer()) { |
204 if (backgroundRenderer->style()->backgroundImageNeedsFullRepaintOnCo
ntainerHeightChange()) | 204 if (backgroundRenderer->mustRepaintFillLayersOnHeightChange(*backgro
undRenderer->style()->backgroundLayers())) |
205 return true; | 205 return true; |
206 } | 206 } |
207 } | 207 } |
208 | 208 |
209 return false; | 209 return false; |
210 } | 210 } |
211 | 211 |
212 void RenderView::layout() | 212 void RenderView::layout() |
213 { | 213 { |
214 if (!document().paginated()) | 214 if (!document().paginated()) |
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
993 return viewWidth(IncludeScrollbars) / scale; | 993 return viewWidth(IncludeScrollbars) / scale; |
994 } | 994 } |
995 | 995 |
996 double RenderView::layoutViewportHeight() const | 996 double RenderView::layoutViewportHeight() const |
997 { | 997 { |
998 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; | 998 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; |
999 return viewHeight(IncludeScrollbars) / scale; | 999 return viewHeight(IncludeScrollbars) / scale; |
1000 } | 1000 } |
1001 | 1001 |
1002 } // namespace WebCore | 1002 } // namespace WebCore |
OLD | NEW |