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, 2010 Apple Inc. All rights reserv
ed. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv
ed. |
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 10 matching lines...) Expand all Loading... |
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 * Boston, MA 02110-1301, USA. | 22 * Boston, MA 02110-1301, USA. |
23 */ | 23 */ |
24 | 24 |
25 #ifndef LayoutTable_h | 25 #ifndef LayoutTable_h |
26 #define LayoutTable_h | 26 #define LayoutTable_h |
27 | 27 |
28 #include "core/CSSPropertyNames.h" | 28 #include "core/CSSPropertyNames.h" |
29 #include "core/CoreExport.h" | 29 #include "core/CoreExport.h" |
30 #include "core/layout/LayoutBlock.h" | 30 #include "core/layout/LayoutBlock.h" |
31 #include "core/layout/style/CollapsedBorderValue.h" | 31 #include "core/style/CollapsedBorderValue.h" |
32 #include "wtf/Vector.h" | 32 #include "wtf/Vector.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 class LayoutTableCol; | 36 class LayoutTableCol; |
37 class LayoutTableCaption; | 37 class LayoutTableCaption; |
38 class LayoutTableCell; | 38 class LayoutTableCell; |
39 class LayoutTableSection; | 39 class LayoutTableSection; |
40 class TableLayoutAlgorithm; | 40 class TableLayoutAlgorithm; |
41 | 41 |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 if (m_firstBody) | 361 if (m_firstBody) |
362 return m_firstBody; | 362 return m_firstBody; |
363 return m_foot; | 363 return m_foot; |
364 } | 364 } |
365 | 365 |
366 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTable, isTable()); | 366 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTable, isTable()); |
367 | 367 |
368 } // namespace blink | 368 } // namespace blink |
369 | 369 |
370 #endif // LayoutTable_h | 370 #endif // LayoutTable_h |
OLD | NEW |