| 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, 2008, 2010, 2011 Apple Inc. All rights
reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010, 2011 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 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 #include "core/html/HTMLTableElement.h" | 25 #include "core/html/HTMLTableElement.h" |
| 26 | 26 |
| 27 #include "bindings/core/v8/ExceptionState.h" | 27 #include "bindings/core/v8/ExceptionState.h" |
| 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" | 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" |
| 29 #include "core/CSSPropertyNames.h" | 29 #include "core/CSSPropertyNames.h" |
| 30 #include "core/CSSValueKeywords.h" | 30 #include "core/CSSValueKeywords.h" |
| 31 #include "core/HTMLNames.h" | 31 #include "core/HTMLNames.h" |
| 32 #include "core/css/CSSImageValue.h" | 32 #include "core/css/CSSImageValue.h" |
| 33 #include "core/css/CSSValuePool.h" | 33 #include "core/css/CSSValuePool.h" |
| 34 #include "core/css/StylePropertySet.h" |
| 34 #include "core/dom/Attribute.h" | 35 #include "core/dom/Attribute.h" |
| 35 #include "core/dom/ElementTraversal.h" | 36 #include "core/dom/ElementTraversal.h" |
| 37 #include "core/dom/ExceptionCode.h" |
| 36 #include "core/dom/NodeListsNodeData.h" | 38 #include "core/dom/NodeListsNodeData.h" |
| 37 #include "core/dom/StyleChangeReason.h" | 39 #include "core/dom/StyleChangeReason.h" |
| 38 #include "core/html/HTMLTableCaptionElement.h" | 40 #include "core/html/HTMLTableCaptionElement.h" |
| 39 #include "core/html/HTMLTableCellElement.h" | 41 #include "core/html/HTMLTableCellElement.h" |
| 40 #include "core/html/HTMLTableRowElement.h" | 42 #include "core/html/HTMLTableRowElement.h" |
| 41 #include "core/html/HTMLTableRowsCollection.h" | 43 #include "core/html/HTMLTableRowsCollection.h" |
| 42 #include "core/html/HTMLTableSectionElement.h" | 44 #include "core/html/HTMLTableSectionElement.h" |
| 43 #include "core/html/parser/HTMLParserIdioms.h" | 45 #include "core/html/parser/HTMLParserIdioms.h" |
| 44 #include "core/layout/LayoutTable.h" | 46 #include "core/layout/LayoutTable.h" |
| 45 #include "platform/weborigin/Referrer.h" | 47 #include "platform/weborigin/Referrer.h" |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 return getAttribute(summaryAttr); | 559 return getAttribute(summaryAttr); |
| 558 } | 560 } |
| 559 | 561 |
| 560 DEFINE_TRACE(HTMLTableElement) | 562 DEFINE_TRACE(HTMLTableElement) |
| 561 { | 563 { |
| 562 visitor->trace(m_sharedCellStyle); | 564 visitor->trace(m_sharedCellStyle); |
| 563 HTMLElement::trace(visitor); | 565 HTMLElement::trace(visitor); |
| 564 } | 566 } |
| 565 | 567 |
| 566 } // namespace blink | 568 } // namespace blink |
| OLD | NEW |