| 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, 2010 Apple Inc. All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2010 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 11 matching lines...) Expand all Loading... |
| 22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "config.h" | 25 #include "config.h" |
| 26 #include "core/html/HTMLTableCellElement.h" | 26 #include "core/html/HTMLTableCellElement.h" |
| 27 | 27 |
| 28 #include "core/CSSPropertyNames.h" | 28 #include "core/CSSPropertyNames.h" |
| 29 #include "core/CSSValueKeywords.h" | 29 #include "core/CSSValueKeywords.h" |
| 30 #include "core/HTMLNames.h" | 30 #include "core/HTMLNames.h" |
| 31 #include "core/dom/Attribute.h" | 31 #include "core/dom/Attribute.h" |
| 32 #include "core/dom/ElementTraversal.h" |
| 32 #include "core/html/HTMLTableElement.h" | 33 #include "core/html/HTMLTableElement.h" |
| 33 #include "core/rendering/RenderTableCell.h" | 34 #include "core/rendering/RenderTableCell.h" |
| 34 | 35 |
| 35 using std::max; | 36 using std::max; |
| 36 using std::min; | 37 using std::min; |
| 37 | 38 |
| 38 namespace WebCore { | 39 namespace WebCore { |
| 39 | 40 |
| 40 // Clamp rowspan at 8k to match Firefox. | 41 // Clamp rowspan at 8k to match Firefox. |
| 41 static const int maxRowspan = 8190; | 42 static const int maxRowspan = 8190; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 176 |
| 176 RenderTableCell* tableCellRenderer = toRenderTableCell(cellRenderer); | 177 RenderTableCell* tableCellRenderer = toRenderTableCell(cellRenderer); |
| 177 RenderTableCell* cellAboveRenderer = tableCellRenderer->table()->cellAbove(t
ableCellRenderer); | 178 RenderTableCell* cellAboveRenderer = tableCellRenderer->table()->cellAbove(t
ableCellRenderer); |
| 178 if (!cellAboveRenderer) | 179 if (!cellAboveRenderer) |
| 179 return 0; | 180 return 0; |
| 180 | 181 |
| 181 return toHTMLTableCellElement(cellAboveRenderer->node()); | 182 return toHTMLTableCellElement(cellAboveRenderer->node()); |
| 182 } | 183 } |
| 183 | 184 |
| 184 } // namespace WebCore | 185 } // namespace WebCore |
| OLD | NEW |