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, 2007, 2008, 2009, 2010, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc.
All rights reserved. |
8 * | 8 * |
9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
(...skipping 29 matching lines...) Expand all Loading... |
40 using namespace HTMLNames; | 40 using namespace HTMLNames; |
41 | 41 |
42 RenderTableRow::RenderTableRow(Element* element) | 42 RenderTableRow::RenderTableRow(Element* element) |
43 : RenderBox(element) | 43 : RenderBox(element) |
44 , m_rowIndex(unsetRowIndex) | 44 , m_rowIndex(unsetRowIndex) |
45 { | 45 { |
46 // init RenderObject attributes | 46 // init RenderObject attributes |
47 setInline(false); // our object is not Inline | 47 setInline(false); // our object is not Inline |
48 } | 48 } |
49 | 49 |
50 void RenderTableRow::trace(Visitor* visitor) | |
51 { | |
52 visitor->trace(m_children); | |
53 RenderBox::trace(visitor); | |
54 } | |
55 | |
56 void RenderTableRow::willBeRemovedFromTree() | 50 void RenderTableRow::willBeRemovedFromTree() |
57 { | 51 { |
58 RenderBox::willBeRemovedFromTree(); | 52 RenderBox::willBeRemovedFromTree(); |
59 | 53 |
60 section()->setNeedsCellRecalc(); | 54 section()->setNeedsCellRecalc(); |
61 } | 55 } |
62 | 56 |
63 static bool borderWidthChanged(const RenderStyle* oldStyle, const RenderStyle* n
ewStyle) | 57 static bool borderWidthChanged(const RenderStyle* oldStyle, const RenderStyle* n
ewStyle) |
64 { | 58 { |
65 return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth() | 59 return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth() |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 251 |
258 RenderTableRow* RenderTableRow::createAnonymousWithParentRenderer(const RenderOb
ject* parent) | 252 RenderTableRow* RenderTableRow::createAnonymousWithParentRenderer(const RenderOb
ject* parent) |
259 { | 253 { |
260 RenderTableRow* newRow = RenderTableRow::createAnonymous(&parent->document()
); | 254 RenderTableRow* newRow = RenderTableRow::createAnonymous(&parent->document()
); |
261 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(
parent->style(), TABLE_ROW); | 255 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(
parent->style(), TABLE_ROW); |
262 newRow->setStyle(newStyle.release()); | 256 newRow->setStyle(newStyle.release()); |
263 return newRow; | 257 return newRow; |
264 } | 258 } |
265 | 259 |
266 } // namespace blink | 260 } // namespace blink |
OLD | NEW |