| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 , m_frameView(view) | 55 , m_frameView(view) |
| 56 , m_selectionStart(0) | 56 , m_selectionStart(0) |
| 57 , m_selectionEnd(0) | 57 , m_selectionEnd(0) |
| 58 , m_selectionStartPos(-1) | 58 , m_selectionStartPos(-1) |
| 59 , m_selectionEndPos(-1) | 59 , m_selectionEndPos(-1) |
| 60 , m_maximalOutlineSize(0) | 60 , m_maximalOutlineSize(0) |
| 61 , m_pageLogicalHeight(0) | 61 , m_pageLogicalHeight(0) |
| 62 , m_pageLogicalHeightChanged(false) | 62 , m_pageLogicalHeightChanged(false) |
| 63 , m_layoutState(0) | 63 , m_layoutState(0) |
| 64 , m_layoutStateDisableCount(0) | 64 , m_layoutStateDisableCount(0) |
| 65 , m_renderQuoteCount(0) | 65 , m_renderQuoteHead(0) |
| 66 , m_renderCounterCount(0) | 66 , m_renderCounterCount(0) |
| 67 { | 67 { |
| 68 // Clear our anonymous bit, set because RenderObject assumes | 68 // Clear our anonymous bit, set because RenderObject assumes |
| 69 // any renderer with document as the node is anonymous. | 69 // any renderer with document as the node is anonymous. |
| 70 setIsAnonymous(false); | 70 setIsAnonymous(false); |
| 71 | 71 |
| 72 // init RenderObject attributes | 72 // init RenderObject attributes |
| 73 setInline(false); | 73 setInline(false); |
| 74 | 74 |
| 75 m_minPreferredLogicalWidth = 0; | 75 m_minPreferredLogicalWidth = 0; |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 966 return; | 966 return; |
| 967 | 967 |
| 968 ListHashSet<RenderBox*>::const_iterator end = positionedObjects->end(); | 968 ListHashSet<RenderBox*>::const_iterator end = positionedObjects->end(); |
| 969 for (ListHashSet<RenderBox*>::const_iterator it = positionedObjects->begin()
; it != end; ++it) { | 969 for (ListHashSet<RenderBox*>::const_iterator it = positionedObjects->begin()
; it != end; ++it) { |
| 970 RenderBox* currBox = *it; | 970 RenderBox* currBox = *it; |
| 971 currBox->setNeedsLayout(true); | 971 currBox->setNeedsLayout(true); |
| 972 } | 972 } |
| 973 } | 973 } |
| 974 | 974 |
| 975 } // namespace WebCore | 975 } // namespace WebCore |
| OLD | NEW |