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. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. |
8 * All rights reserved. | 8 * All rights reserved. |
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 11 matching lines...) Expand all Loading... |
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 * Boston, MA 02110-1301, USA. | 23 * Boston, MA 02110-1301, USA. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef LayoutTable_h | 26 #ifndef LayoutTable_h |
27 #define LayoutTable_h | 27 #define LayoutTable_h |
28 | 28 |
29 #include <memory> | 29 #include <memory> |
30 #include "core/CSSPropertyNames.h" | 30 #include "core/CSSPropertyNames.h" |
31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "core/layout/CollapsedBorderValue.h" |
32 #include "core/layout/LayoutBlock.h" | 33 #include "core/layout/LayoutBlock.h" |
33 #include "core/style/CollapsedBorderValue.h" | |
34 #include "platform/wtf/Vector.h" | 34 #include "platform/wtf/Vector.h" |
35 | 35 |
36 namespace blink { | 36 namespace blink { |
37 | 37 |
38 class LayoutTableCol; | 38 class LayoutTableCol; |
39 class LayoutTableCaption; | 39 class LayoutTableCaption; |
40 class LayoutTableCell; | 40 class LayoutTableCell; |
41 class LayoutTableSection; | 41 class LayoutTableSection; |
42 class TableLayoutAlgorithm; | 42 class TableLayoutAlgorithm; |
43 | 43 |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 if (first_body_) | 617 if (first_body_) |
618 return first_body_; | 618 return first_body_; |
619 return foot_; | 619 return foot_; |
620 } | 620 } |
621 | 621 |
622 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTable, IsTable()); | 622 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutTable, IsTable()); |
623 | 623 |
624 } // namespace blink | 624 } // namespace blink |
625 | 625 |
626 #endif // LayoutTable_h | 626 #endif // LayoutTable_h |
OLD | NEW |