| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
| 4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
| 5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. |
| 8 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 LayoutTableCol::LayoutTableCol(Element* element) | 38 LayoutTableCol::LayoutTableCol(Element* element) |
| 39 : RenderBox(element) | 39 : RenderBox(element) |
| 40 , m_span(1) | 40 , m_span(1) |
| 41 { | 41 { |
| 42 // init RenderObject attributes | 42 // init RenderObject attributes |
| 43 setInline(true); // our object is not Inline | 43 setInline(true); // our object is not Inline |
| 44 updateFromElement(); | 44 updateFromElement(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 void LayoutTableCol::trace(Visitor* visitor) | |
| 48 { | |
| 49 visitor->trace(m_children); | |
| 50 RenderBox::trace(visitor); | |
| 51 } | |
| 52 | |
| 53 void LayoutTableCol::styleDidChange(StyleDifference diff, const RenderStyle* old
Style) | 47 void LayoutTableCol::styleDidChange(StyleDifference diff, const RenderStyle* old
Style) |
| 54 { | 48 { |
| 55 RenderBox::styleDidChange(diff, oldStyle); | 49 RenderBox::styleDidChange(diff, oldStyle); |
| 56 | 50 |
| 57 // If border was changed, notify table. | 51 // If border was changed, notify table. |
| 58 if (parent()) { | 52 if (parent()) { |
| 59 LayoutTable* table = this->table(); | 53 LayoutTable* table = this->table(); |
| 60 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout
() && oldStyle && oldStyle->border() != style()->border()) { | 54 if (table && !table->selfNeedsLayout() && !table->normalChildNeedsLayout
() && oldStyle && oldStyle->border() != style()->border()) { |
| 61 table->invalidateCollapsedBorders(); | 55 table->invalidateCollapsedBorders(); |
| 62 } else if (oldStyle && oldStyle->logicalWidth() != style()->logicalWidth
()) { | 56 } else if (oldStyle && oldStyle->logicalWidth() != style()->logicalWidth
()) { |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 return style()->borderStart(); | 189 return style()->borderStart(); |
| 196 } | 190 } |
| 197 | 191 |
| 198 const BorderValue& LayoutTableCol::borderAdjoiningCellAfter(const LayoutTableCel
l* cell) const | 192 const BorderValue& LayoutTableCol::borderAdjoiningCellAfter(const LayoutTableCel
l* cell) const |
| 199 { | 193 { |
| 200 ASSERT_UNUSED(cell, table()->colElement(cell->col() - 1) == this); | 194 ASSERT_UNUSED(cell, table()->colElement(cell->col() - 1) == this); |
| 201 return style()->borderEnd(); | 195 return style()->borderEnd(); |
| 202 } | 196 } |
| 203 | 197 |
| 204 } | 198 } |
| OLD | NEW |