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 |
11 * License as published by the Free Software Foundation; either | 11 * License as published by the Free Software Foundation; either |
12 * version 2 of the License, or (at your option) any later version. | 12 * version 2 of the License, or (at your option) any later version. |
13 * | 13 * |
14 * This library is distributed in the hope that it will be useful, | 14 * This library is distributed in the hope that it will be useful, |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
17 * Library General Public License for more details. | 17 * Library General Public License for more details. |
18 * | 18 * |
19 * You should have received a copy of the GNU Library General Public License | 19 * You should have received a copy of the GNU Library General Public License |
20 * along with this library; see the file COPYING.LIB. If not, write to | 20 * along with this library; see the file COPYING.LIB. If not, write to |
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 #include "config.h" | 25 #include "config.h" |
26 #include "HTMLTableElement.h" | 26 #include "HTMLTableElement.h" |
27 | 27 |
28 #include "Attribute.h" | |
29 #include "CSSPropertyNames.h" | 28 #include "CSSPropertyNames.h" |
30 #include "CSSValueKeywords.h" | 29 #include "CSSValueKeywords.h" |
31 #include "ExceptionCode.h" | |
32 #include "ExceptionCodePlaceholder.h" | |
33 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
34 #include "HTMLParserIdioms.h" | 31 #include "HTMLParserIdioms.h" |
35 #include "HTMLTableCaptionElement.h" | 32 #include "HTMLTableCaptionElement.h" |
36 #include "HTMLTableRowElement.h" | 33 #include "HTMLTableRowElement.h" |
37 #include "HTMLTableRowsCollection.h" | 34 #include "HTMLTableRowsCollection.h" |
38 #include "HTMLTableSectionElement.h" | 35 #include "HTMLTableSectionElement.h" |
39 #include "Text.h" | |
40 #include "core/css/CSSImageValue.h" | 36 #include "core/css/CSSImageValue.h" |
41 #include "core/css/CSSStyleSheet.h" | 37 #include "core/css/CSSStyleSheet.h" |
42 #include "core/css/CSSValuePool.h" | 38 #include "core/css/CSSValuePool.h" |
43 #include "core/css/StylePropertySet.h" | 39 #include "core/css/StylePropertySet.h" |
| 40 #include "core/dom/Attribute.h" |
| 41 #include "core/dom/ExceptionCode.h" |
| 42 #include "core/dom/ExceptionCodePlaceholder.h" |
| 43 #include "core/dom/Text.h" |
44 #include "core/rendering/RenderTable.h" | 44 #include "core/rendering/RenderTable.h" |
45 | 45 |
46 namespace WebCore { | 46 namespace WebCore { |
47 | 47 |
48 using namespace HTMLNames; | 48 using namespace HTMLNames; |
49 | 49 |
50 HTMLTableElement::HTMLTableElement(const QualifiedName& tagName, Document* docum
ent) | 50 HTMLTableElement::HTMLTableElement(const QualifiedName& tagName, Document* docum
ent) |
51 : HTMLElement(tagName, document) | 51 : HTMLElement(tagName, document) |
52 , m_borderAttr(false) | 52 , m_borderAttr(false) |
53 , m_borderColorAttr(false) | 53 , m_borderColorAttr(false) |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 } | 573 } |
574 | 574 |
575 void HTMLTableElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) cons
t | 575 void HTMLTableElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) cons
t |
576 { | 576 { |
577 HTMLElement::addSubresourceAttributeURLs(urls); | 577 HTMLElement::addSubresourceAttributeURLs(urls); |
578 | 578 |
579 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr)
)); | 579 addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr)
)); |
580 } | 580 } |
581 | 581 |
582 } | 582 } |
OLD | NEW |