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, 2007 Apple Inc. All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007 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 16 matching lines...) Expand all Loading... |
27 #define HTMLTableSectionElement_h | 27 #define HTMLTableSectionElement_h |
28 | 28 |
29 #include "core/html/HTMLTablePartElement.h" | 29 #include "core/html/HTMLTablePartElement.h" |
30 | 30 |
31 namespace WebCore { | 31 namespace WebCore { |
32 | 32 |
33 class ExceptionState; | 33 class ExceptionState; |
34 | 34 |
35 class HTMLTableSectionElement FINAL : public HTMLTablePartElement { | 35 class HTMLTableSectionElement FINAL : public HTMLTablePartElement { |
36 public: | 36 public: |
37 static PassRefPtr<HTMLTableSectionElement> create(const QualifiedName&, Docu
ment*); | 37 static PassRefPtr<HTMLTableSectionElement> create(const QualifiedName&, Docu
ment&); |
38 | 38 |
39 PassRefPtr<HTMLElement> insertRow(int index, ExceptionState&); | 39 PassRefPtr<HTMLElement> insertRow(int index, ExceptionState&); |
40 void deleteRow(int index, ExceptionState&); | 40 void deleteRow(int index, ExceptionState&); |
41 | 41 |
42 int numRows() const; | 42 int numRows() const; |
43 | 43 |
44 String align() const; | 44 String align() const; |
45 void setAlign(const String&); | 45 void setAlign(const String&); |
46 | 46 |
47 String ch() const; | 47 String ch() const; |
48 void setCh(const String&); | 48 void setCh(const String&); |
49 | 49 |
50 String chOff() const; | 50 String chOff() const; |
51 void setChOff(const String&); | 51 void setChOff(const String&); |
52 | 52 |
53 String vAlign() const; | 53 String vAlign() const; |
54 void setVAlign(const String&); | 54 void setVAlign(const String&); |
55 | 55 |
56 PassRefPtr<HTMLCollection> rows(); | 56 PassRefPtr<HTMLCollection> rows(); |
57 | 57 |
58 private: | 58 private: |
59 HTMLTableSectionElement(const QualifiedName& tagName, Document*); | 59 HTMLTableSectionElement(const QualifiedName& tagName, Document&); |
60 | 60 |
61 virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERR
IDE; | 61 virtual const StylePropertySet* additionalPresentationAttributeStyle() OVERR
IDE; |
62 }; | 62 }; |
63 | 63 |
64 inline HTMLTableSectionElement* toHTMLTableSectionElement(Node* node) | 64 inline HTMLTableSectionElement* toHTMLTableSectionElement(Node* node) |
65 { | 65 { |
66 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::tbodyT
ag) || node->hasTagName(HTMLNames::tfootTag) || node->hasTagName(HTMLNames::thea
dTag)); | 66 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(HTMLNames::tbodyT
ag) || node->hasTagName(HTMLNames::tfootTag) || node->hasTagName(HTMLNames::thea
dTag)); |
67 return static_cast<HTMLTableSectionElement*>(node); | 67 return static_cast<HTMLTableSectionElement*>(node); |
68 } | 68 } |
69 | 69 |
70 } //namespace | 70 } //namespace |
71 | 71 |
72 #endif | 72 #endif |
OLD | NEW |