| 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 | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010, 2011 Apple Inc. All rights |
| 8 * reserved. | 8 * 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 28 matching lines...) Expand all Loading... |
| 39 #include "core/dom/NodeListsNodeData.h" | 39 #include "core/dom/NodeListsNodeData.h" |
| 40 #include "core/dom/StyleChangeReason.h" | 40 #include "core/dom/StyleChangeReason.h" |
| 41 #include "core/frame/UseCounter.h" | 41 #include "core/frame/UseCounter.h" |
| 42 #include "core/html/HTMLTableCaptionElement.h" | 42 #include "core/html/HTMLTableCaptionElement.h" |
| 43 #include "core/html/HTMLTableCellElement.h" | 43 #include "core/html/HTMLTableCellElement.h" |
| 44 #include "core/html/HTMLTableRowElement.h" | 44 #include "core/html/HTMLTableRowElement.h" |
| 45 #include "core/html/HTMLTableRowsCollection.h" | 45 #include "core/html/HTMLTableRowsCollection.h" |
| 46 #include "core/html/HTMLTableSectionElement.h" | 46 #include "core/html/HTMLTableSectionElement.h" |
| 47 #include "core/html/parser/HTMLParserIdioms.h" | 47 #include "core/html/parser/HTMLParserIdioms.h" |
| 48 #include "platform/weborigin/Referrer.h" | 48 #include "platform/weborigin/Referrer.h" |
| 49 #include "wtf/StdLibExtras.h" | 49 #include "platform/wtf/StdLibExtras.h" |
| 50 | 50 |
| 51 namespace blink { | 51 namespace blink { |
| 52 | 52 |
| 53 using namespace HTMLNames; | 53 using namespace HTMLNames; |
| 54 | 54 |
| 55 inline HTMLTableElement::HTMLTableElement(Document& document) | 55 inline HTMLTableElement::HTMLTableElement(Document& document) |
| 56 : HTMLElement(tableTag, document), | 56 : HTMLElement(tableTag, document), |
| 57 border_attr_(false), | 57 border_attr_(false), |
| 58 border_color_attr_(false), | 58 border_color_attr_(false), |
| 59 frame_attr_(false), | 59 frame_attr_(false), |
| (...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 const AtomicString& HTMLTableElement::Summary() const { | 610 const AtomicString& HTMLTableElement::Summary() const { |
| 611 return getAttribute(summaryAttr); | 611 return getAttribute(summaryAttr); |
| 612 } | 612 } |
| 613 | 613 |
| 614 DEFINE_TRACE(HTMLTableElement) { | 614 DEFINE_TRACE(HTMLTableElement) { |
| 615 visitor->Trace(shared_cell_style_); | 615 visitor->Trace(shared_cell_style_); |
| 616 HTMLElement::Trace(visitor); | 616 HTMLElement::Trace(visitor); |
| 617 } | 617 } |
| 618 | 618 |
| 619 } // namespace blink | 619 } // namespace blink |
| OLD | NEW |