darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 1 | /* |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 2 | * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 3 | * (C) 1997 Torben Weis (weis@kde.org) |
| 4 | * (C) 1998 Waldo Bastian (bastian@kde.org) |
| 5 | * (C) 1999 Lars Knoll (knoll@kde.org) |
| 6 | * (C) 1999 Antti Koivisto (koivisto@kde.org) |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 7 | * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 8 | * |
| 9 | * This library is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU Library General Public |
| 11 | * License as published by the Free Software Foundation; either |
| 12 | * version 2 of the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * Library General Public License for more details. |
| 18 | * |
| 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 |
ddkilzer | c8eccec | 2007-09-26 02:29:57 +0000 | [diff] [blame] | 21 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 22 | * Boston, MA 02110-1301, USA. |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 23 | */ |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 24 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 25 | #include "config.h" |
| 26 | #include "HTMLTableElement.h" |
| 27 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 28 | #include "CSSPropertyNames.h" |
eseidel | b3f4213 | 2006-05-16 02:08:51 +0000 | [diff] [blame] | 29 | #include "CSSStyleSheet.h" |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 30 | #include "CSSValueKeywords.h" |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 31 | #include "ExceptionCode.h" |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 32 | #include "HTMLNames.h" |
| 33 | #include "HTMLTableCaptionElement.h" |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 34 | #include "HTMLTableRowsCollection.h" |
| 35 | #include "HTMLTableRowElement.h" |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 36 | #include "HTMLTableSectionElement.h" |
| 37 | #include "RenderTable.h" |
hyatt | f2cfbe0 | 2007-05-24 18:26:21 +0000 | [diff] [blame] | 38 | #include "Text.h" |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 39 | |
| 40 | namespace WebCore { |
| 41 | |
| 42 | using namespace HTMLNames; |
| 43 | |
| 44 | HTMLTableElement::HTMLTableElement(Document *doc) |
| 45 | : HTMLElement(tableTag, doc) |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 46 | , m_borderAttr(false) |
| 47 | , m_borderColorAttr(false) |
| 48 | , m_frameAttr(false) |
| 49 | , m_rulesAttr(UnsetRules) |
| 50 | , m_padding(1) |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 51 | { |
| 52 | } |
| 53 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 54 | bool HTMLTableElement::checkDTD(const Node* newChild) |
| 55 | { |
hyatt | f2cfbe0 | 2007-05-24 18:26:21 +0000 | [diff] [blame] | 56 | if (newChild->isTextNode()) |
| 57 | return static_cast<const Text*>(newChild)->containsOnlyWhitespace(); |
| 58 | return newChild->hasTagName(captionTag) || |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 59 | newChild->hasTagName(colTag) || newChild->hasTagName(colgroupTag) || |
| 60 | newChild->hasTagName(theadTag) || newChild->hasTagName(tfootTag) || |
| 61 | newChild->hasTagName(tbodyTag) || newChild->hasTagName(formTag) || |
| 62 | newChild->hasTagName(scriptTag); |
| 63 | } |
| 64 | |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 65 | HTMLTableCaptionElement* HTMLTableElement::caption() const |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 66 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 67 | for (Node* child = firstChild(); child; child = child->nextSibling()) { |
| 68 | if (child->hasTagName(captionTag)) |
| 69 | return static_cast<HTMLTableCaptionElement*>(child); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 70 | } |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | void HTMLTableElement::setCaption(PassRefPtr<HTMLTableCaptionElement> newCaption, ExceptionCode& ec) |
| 75 | { |
| 76 | deleteCaption(); |
| 77 | insertBefore(newCaption, firstChild(), ec); |
| 78 | } |
| 79 | |
| 80 | HTMLTableSectionElement* HTMLTableElement::tHead() const |
| 81 | { |
| 82 | for (Node* child = firstChild(); child; child = child->nextSibling()) { |
| 83 | if (child->hasTagName(theadTag)) |
| 84 | return static_cast<HTMLTableSectionElement*>(child); |
| 85 | } |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | void HTMLTableElement::setTHead(PassRefPtr<HTMLTableSectionElement> newHead, ExceptionCode& ec) |
| 90 | { |
| 91 | deleteTHead(); |
| 92 | |
| 93 | Node* child; |
| 94 | for (child = firstChild(); child; child = child->nextSibling()) |
| 95 | if (child->isElementNode() && !child->hasTagName(captionTag) && !child->hasTagName(colgroupTag)) |
| 96 | break; |
| 97 | |
| 98 | insertBefore(newHead, child, ec); |
| 99 | } |
| 100 | |
| 101 | HTMLTableSectionElement* HTMLTableElement::tFoot() const |
| 102 | { |
| 103 | for (Node* child = firstChild(); child; child = child->nextSibling()) { |
| 104 | if (child->hasTagName(tfootTag)) |
| 105 | return static_cast<HTMLTableSectionElement*>(child); |
| 106 | } |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | void HTMLTableElement::setTFoot(PassRefPtr<HTMLTableSectionElement> newFoot, ExceptionCode& ec) |
| 111 | { |
| 112 | deleteTFoot(); |
| 113 | |
| 114 | Node* child; |
| 115 | for (child = firstChild(); child; child = child->nextSibling()) |
| 116 | if (child->isElementNode() && !child->hasTagName(captionTag) && !child->hasTagName(colgroupTag) && !child->hasTagName(theadTag)) |
| 117 | break; |
| 118 | |
| 119 | insertBefore(newFoot, child, ec); |
| 120 | } |
| 121 | |
| 122 | PassRefPtr<HTMLElement> HTMLTableElement::createTHead() |
| 123 | { |
| 124 | if (HTMLTableSectionElement* existingHead = tHead()) |
| 125 | return existingHead; |
| 126 | RefPtr<HTMLTableSectionElement> head = new HTMLTableSectionElement(theadTag, document()); |
| 127 | ExceptionCode ec; |
| 128 | setTHead(head, ec); |
| 129 | return head.release(); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | void HTMLTableElement::deleteTHead() |
| 133 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 134 | ExceptionCode ec; |
| 135 | removeChild(tHead(), ec); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 136 | } |
| 137 | |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 138 | PassRefPtr<HTMLElement> HTMLTableElement::createTFoot() |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 139 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 140 | if (HTMLTableSectionElement* existingFoot = tFoot()) |
| 141 | return existingFoot; |
| 142 | RefPtr<HTMLTableSectionElement> foot = new HTMLTableSectionElement(tfootTag, document()); |
| 143 | ExceptionCode ec; |
| 144 | setTFoot(foot, ec); |
| 145 | return foot.release(); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | void HTMLTableElement::deleteTFoot() |
| 149 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 150 | ExceptionCode ec; |
| 151 | removeChild(tFoot(), ec); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 152 | } |
| 153 | |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 154 | PassRefPtr<HTMLElement> HTMLTableElement::createCaption() |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 155 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 156 | if (HTMLTableCaptionElement* existingCaption = caption()) |
| 157 | return existingCaption; |
| 158 | RefPtr<HTMLTableCaptionElement> caption = new HTMLTableCaptionElement(document()); |
| 159 | ExceptionCode ec; |
| 160 | setCaption(caption, ec); |
| 161 | return caption.release(); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | void HTMLTableElement::deleteCaption() |
| 165 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 166 | ExceptionCode ec; |
| 167 | removeChild(caption(), ec); |
| 168 | } |
| 169 | |
| 170 | HTMLTableSectionElement* HTMLTableElement::lastBody() const |
| 171 | { |
| 172 | for (Node* child = lastChild(); child; child = child->previousSibling()) { |
| 173 | if (child->hasTagName(tbodyTag)) |
| 174 | return static_cast<HTMLTableSectionElement*>(child); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 175 | } |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 176 | return 0; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 177 | } |
| 178 | |
darin | f0d1934 | 2007-05-01 19:59:53 +0000 | [diff] [blame] | 179 | PassRefPtr<HTMLElement> HTMLTableElement::insertRow(int index, ExceptionCode& ec) |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 180 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 181 | if (index < -1) { |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 182 | ec = INDEX_SIZE_ERR; |
darin | f0d1934 | 2007-05-01 19:59:53 +0000 | [diff] [blame] | 183 | return 0; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 184 | } |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 185 | |
| 186 | HTMLTableRowElement* lastRow = 0; |
| 187 | HTMLTableRowElement* row = 0; |
| 188 | if (index == -1) |
| 189 | lastRow = HTMLTableRowsCollection::lastRow(this); |
| 190 | else { |
| 191 | for (int i = 0; i <= index; ++i) { |
| 192 | row = HTMLTableRowsCollection::rowAfter(this, lastRow); |
| 193 | if (!row) { |
| 194 | if (i != index) { |
| 195 | ec = INDEX_SIZE_ERR; |
| 196 | return 0; |
| 197 | } |
| 198 | break; |
| 199 | } |
| 200 | lastRow = row; |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | Node* parent; |
| 205 | if (lastRow) |
| 206 | parent = row ? row->parent() : lastRow->parent(); |
| 207 | else { |
| 208 | parent = lastBody(); |
| 209 | if (!parent) { |
| 210 | RefPtr<HTMLTableSectionElement> newBody = new HTMLTableSectionElement(tbodyTag, document()); |
| 211 | RefPtr<HTMLTableRowElement> newRow = new HTMLTableRowElement(document()); |
| 212 | newBody->appendChild(newRow, ec); |
| 213 | appendChild(newBody.release(), ec); |
| 214 | return newRow.release(); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | RefPtr<HTMLTableRowElement> newRow = new HTMLTableRowElement(document()); |
| 219 | parent->insertBefore(newRow, row, ec); |
| 220 | return newRow.release(); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | void HTMLTableElement::deleteRow(int index, ExceptionCode& ec) |
| 224 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 225 | HTMLTableRowElement* row = 0; |
| 226 | if (index == -1) |
| 227 | row = HTMLTableRowsCollection::lastRow(this); |
| 228 | else { |
| 229 | for (int i = 0; i <= index; ++i) { |
| 230 | row = HTMLTableRowsCollection::rowAfter(this, row); |
| 231 | if (!row) |
| 232 | break; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 233 | } |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 234 | } |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 235 | if (!row) { |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 236 | ec = INDEX_SIZE_ERR; |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 237 | return; |
| 238 | } |
| 239 | row->remove(ec); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | ContainerNode* HTMLTableElement::addChild(PassRefPtr<Node> child) |
| 243 | { |
| 244 | if (child->hasTagName(formTag)) { |
| 245 | // First add the child. |
| 246 | HTMLElement::addChild(child); |
| 247 | |
| 248 | // Now simply return ourselves as the container to insert into. |
| 249 | // This has the effect of demoting the form to a leaf and moving it safely out of the way. |
| 250 | return this; |
| 251 | } |
| 252 | |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 253 | return HTMLElement::addChild(child.get()); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 254 | } |
| 255 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 256 | bool HTMLTableElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const |
| 257 | { |
| 258 | if (attrName == backgroundAttr) { |
| 259 | result = (MappedAttributeEntry)(eLastEntry + document()->docID()); |
| 260 | return false; |
| 261 | } |
| 262 | |
| 263 | if (attrName == widthAttr || |
| 264 | attrName == heightAttr || |
| 265 | attrName == bgcolorAttr || |
| 266 | attrName == cellspacingAttr || |
| 267 | attrName == vspaceAttr || |
| 268 | attrName == hspaceAttr || |
| 269 | attrName == valignAttr) { |
| 270 | result = eUniversal; |
| 271 | return false; |
| 272 | } |
| 273 | |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 274 | if (attrName == bordercolorAttr || attrName == frameAttr || attrName == rulesAttr) { |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 275 | result = eUniversal; |
| 276 | return true; |
| 277 | } |
| 278 | |
| 279 | if (attrName == borderAttr) { |
| 280 | result = eTable; |
| 281 | return true; |
| 282 | } |
| 283 | |
| 284 | if (attrName == alignAttr) { |
| 285 | result = eTable; |
| 286 | return false; |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 287 | } |
| 288 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 289 | return HTMLElement::mapToEntry(attrName, result); |
| 290 | } |
| 291 | |
rwlbuis | da67f4e | 2007-08-25 16:57:13 +0000 | [diff] [blame] | 292 | static inline bool isTableCellAncestor(Node* n) |
| 293 | { |
| 294 | return n->hasTagName(theadTag) || n->hasTagName(tbodyTag) || |
| 295 | n->hasTagName(tfootTag) || n->hasTagName(trTag) || |
| 296 | n->hasTagName(thTag); |
| 297 | } |
| 298 | |
| 299 | static bool setTableCellsChanged(Node* n) |
| 300 | { |
| 301 | ASSERT(n); |
| 302 | bool cellChanged = false; |
| 303 | |
| 304 | if (n->hasTagName(tdTag)) |
| 305 | cellChanged = true; |
| 306 | else if (isTableCellAncestor(n)) { |
| 307 | for (Node* child = n->firstChild(); child; child = child->nextSibling()) |
| 308 | cellChanged |= setTableCellsChanged(child); |
| 309 | } |
| 310 | |
| 311 | if (cellChanged) |
| 312 | n->setChanged(); |
| 313 | |
| 314 | return cellChanged; |
| 315 | } |
| 316 | |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 317 | void HTMLTableElement::parseMappedAttribute(MappedAttribute* attr) |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 318 | { |
| 319 | if (attr->name() == widthAttr) |
| 320 | addCSSLength(attr, CSS_PROP_WIDTH, attr->value()); |
| 321 | else if (attr->name() == heightAttr) |
| 322 | addCSSLength(attr, CSS_PROP_HEIGHT, attr->value()); |
| 323 | else if (attr->name() == borderAttr) { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 324 | m_borderAttr = true; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 325 | if (attr->decl()) { |
| 326 | RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSS_PROP_BORDER_LEFT_WIDTH); |
| 327 | if (val && val->isPrimitiveValue()) { |
| 328 | CSSPrimitiveValue* primVal = static_cast<CSSPrimitiveValue*>(val.get()); |
weinig | c109d0e | 2007-07-01 17:38:29 +0000 | [diff] [blame] | 329 | m_borderAttr = primVal->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 330 | } |
| 331 | } else if (!attr->isNull()) { |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 332 | int border = 0; |
| 333 | if (attr->isEmpty()) |
| 334 | border = 1; |
| 335 | else |
| 336 | border = attr->value().toInt(); |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 337 | m_borderAttr = border; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 338 | addCSSLength(attr, CSS_PROP_BORDER_WIDTH, String::number(border)); |
| 339 | } |
| 340 | } else if (attr->name() == bgcolorAttr) |
| 341 | addCSSColor(attr, CSS_PROP_BACKGROUND_COLOR, attr->value()); |
| 342 | else if (attr->name() == bordercolorAttr) { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 343 | m_borderColorAttr = attr->decl(); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 344 | if (!attr->decl() && !attr->isEmpty()) { |
| 345 | addCSSColor(attr, CSS_PROP_BORDER_COLOR, attr->value()); |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 346 | m_borderColorAttr = true; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 347 | } |
| 348 | } else if (attr->name() == backgroundAttr) { |
darin | f4b05b2 | 2006-07-10 05:20:17 +0000 | [diff] [blame] | 349 | String url = parseURL(attr->value()); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 350 | if (!url.isEmpty()) |
| 351 | addCSSImageProperty(attr, CSS_PROP_BACKGROUND_IMAGE, document()->completeURL(url)); |
| 352 | } else if (attr->name() == frameAttr) { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 353 | // Cache the value of "frame" so that the table can examine it later. |
| 354 | m_frameAttr = false; |
| 355 | |
| 356 | // Whether or not to hide the top/right/bottom/left borders. |
| 357 | const int cTop = 0; |
| 358 | const int cRight = 1; |
| 359 | const int cBottom = 2; |
| 360 | const int cLeft = 3; |
| 361 | bool borders[4] = { false, false, false, false }; |
| 362 | |
| 363 | // void, above, below, hsides, vsides, lhs, rhs, box, border |
| 364 | if (equalIgnoringCase(attr->value(), "void")) |
| 365 | m_frameAttr = true; |
| 366 | else if (equalIgnoringCase(attr->value(), "above")) { |
| 367 | m_frameAttr = true; |
| 368 | borders[cTop] = true; |
| 369 | } else if (equalIgnoringCase(attr->value(), "below")) { |
| 370 | m_frameAttr = true; |
| 371 | borders[cBottom] = true; |
| 372 | } else if (equalIgnoringCase(attr->value(), "hsides")) { |
| 373 | m_frameAttr = true; |
| 374 | borders[cTop] = borders[cBottom] = true; |
| 375 | } else if (equalIgnoringCase(attr->value(), "vsides")) { |
| 376 | m_frameAttr = true; |
| 377 | borders[cLeft] = borders[cRight] = true; |
| 378 | } else if (equalIgnoringCase(attr->value(), "lhs")) { |
| 379 | m_frameAttr = true; |
| 380 | borders[cLeft] = true; |
| 381 | } else if (equalIgnoringCase(attr->value(), "rhs")) { |
| 382 | m_frameAttr = true; |
| 383 | borders[cRight] = true; |
| 384 | } else if (equalIgnoringCase(attr->value(), "box") || |
| 385 | equalIgnoringCase(attr->value(), "border")) { |
| 386 | m_frameAttr = true; |
| 387 | borders[cTop] = borders[cBottom] = borders[cLeft] = borders[cRight] = true; |
| 388 | } |
| 389 | |
| 390 | // Now map in the border styles of solid and hidden respectively. |
| 391 | if (m_frameAttr) { |
| 392 | addCSSProperty(attr, CSS_PROP_BORDER_TOP_WIDTH, CSS_VAL_THIN); |
| 393 | addCSSProperty(attr, CSS_PROP_BORDER_BOTTOM_WIDTH, CSS_VAL_THIN); |
| 394 | addCSSProperty(attr, CSS_PROP_BORDER_LEFT_WIDTH, CSS_VAL_THIN); |
| 395 | addCSSProperty(attr, CSS_PROP_BORDER_RIGHT_WIDTH, CSS_VAL_THIN); |
| 396 | addCSSProperty(attr, CSS_PROP_BORDER_TOP_STYLE, borders[cTop] ? CSS_VAL_SOLID : CSS_VAL_HIDDEN); |
| 397 | addCSSProperty(attr, CSS_PROP_BORDER_BOTTOM_STYLE, borders[cBottom] ? CSS_VAL_SOLID : CSS_VAL_HIDDEN); |
| 398 | addCSSProperty(attr, CSS_PROP_BORDER_LEFT_STYLE, borders[cLeft] ? CSS_VAL_SOLID : CSS_VAL_HIDDEN); |
| 399 | addCSSProperty(attr, CSS_PROP_BORDER_RIGHT_STYLE, borders[cRight] ? CSS_VAL_SOLID : CSS_VAL_HIDDEN); |
| 400 | } |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 401 | } else if (attr->name() == rulesAttr) { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 402 | // Cache the value of "rules" so that the pieces of the table can examine it later. |
rwlbuis | da67f4e | 2007-08-25 16:57:13 +0000 | [diff] [blame] | 403 | TableRules oldRules = m_rulesAttr; |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 404 | m_rulesAttr = UnsetRules; |
| 405 | if (equalIgnoringCase(attr->value(), "none")) |
| 406 | m_rulesAttr = NoneRules; |
| 407 | else if (equalIgnoringCase(attr->value(), "groups")) |
| 408 | m_rulesAttr = GroupsRules; |
| 409 | else if (equalIgnoringCase(attr->value(), "rows")) |
| 410 | m_rulesAttr = RowsRules; |
| 411 | if (equalIgnoringCase(attr->value(), "cols")) |
| 412 | m_rulesAttr = ColsRules; |
| 413 | if (equalIgnoringCase(attr->value(), "all")) |
| 414 | m_rulesAttr = AllRules; |
| 415 | |
| 416 | // The presence of a valid rules attribute causes border collapsing to be enabled. |
| 417 | if (m_rulesAttr != UnsetRules) |
| 418 | addCSSProperty(attr, CSS_PROP_BORDER_COLLAPSE, CSS_VAL_COLLAPSE); |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 419 | if (oldRules != m_rulesAttr) { |
| 420 | bool cellChanged = false; |
| 421 | for (Node* child = firstChild(); child; child = child->nextSibling()) |
| 422 | cellChanged |= setTableCellsChanged(child); |
| 423 | if (cellChanged) |
rwlbuis | da67f4e | 2007-08-25 16:57:13 +0000 | [diff] [blame] | 424 | setChanged(); |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 425 | } |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 426 | } else if (attr->name() == cellspacingAttr) { |
| 427 | if (!attr->value().isEmpty()) |
| 428 | addCSSLength(attr, CSS_PROP_BORDER_SPACING, attr->value()); |
| 429 | } else if (attr->name() == cellpaddingAttr) { |
| 430 | if (!attr->value().isEmpty()) |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 431 | m_padding = max(0, attr->value().toInt()); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 432 | else |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 433 | m_padding = 1; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 434 | if (renderer() && renderer()->isTable()) { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 435 | static_cast<RenderTable*>(renderer())->setCellPadding(m_padding); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 436 | if (!renderer()->needsLayout()) |
| 437 | renderer()->setNeedsLayout(true); |
| 438 | } |
| 439 | } else if (attr->name() == colsAttr) { |
| 440 | // ### |
| 441 | } else if (attr->name() == vspaceAttr) { |
| 442 | addCSSLength(attr, CSS_PROP_MARGIN_TOP, attr->value()); |
| 443 | addCSSLength(attr, CSS_PROP_MARGIN_BOTTOM, attr->value()); |
| 444 | } else if (attr->name() == hspaceAttr) { |
| 445 | addCSSLength(attr, CSS_PROP_MARGIN_LEFT, attr->value()); |
| 446 | addCSSLength(attr, CSS_PROP_MARGIN_RIGHT, attr->value()); |
| 447 | } else if (attr->name() == alignAttr) { |
| 448 | if (!attr->value().isEmpty()) |
| 449 | addCSSProperty(attr, CSS_PROP_FLOAT, attr->value()); |
| 450 | } else if (attr->name() == valignAttr) { |
| 451 | if (!attr->value().isEmpty()) |
| 452 | addCSSProperty(attr, CSS_PROP_VERTICAL_ALIGN, attr->value()); |
| 453 | } else |
| 454 | HTMLElement::parseMappedAttribute(attr); |
| 455 | } |
| 456 | |
| 457 | CSSMutableStyleDeclaration* HTMLTableElement::additionalAttributeStyleDecl() |
| 458 | { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 459 | if ((!m_borderAttr && !m_borderColorAttr) || m_frameAttr) |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 460 | return 0; |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 461 | |
| 462 | MappedAttribute attr(tableborderAttr, m_borderColorAttr ? "solid" : "outset"); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 463 | CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, &attr); |
| 464 | if (!decl) { |
| 465 | decl = new CSSMappedAttributeDeclaration(0); |
| 466 | decl->setParent(document()->elementSheet()); |
| 467 | decl->setNode(this); |
| 468 | decl->setStrictParsing(false); // Mapped attributes are just always quirky. |
| 469 | |
| 470 | decl->ref(); // This single ref pins us in the table until the document dies. |
| 471 | |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 472 | int v = m_borderColorAttr ? CSS_VAL_SOLID : CSS_VAL_OUTSET; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 473 | decl->setProperty(CSS_PROP_BORDER_TOP_STYLE, v, false); |
| 474 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, v, false); |
| 475 | decl->setProperty(CSS_PROP_BORDER_LEFT_STYLE, v, false); |
| 476 | decl->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, v, false); |
| 477 | |
| 478 | setMappedAttributeDecl(ePersistent, &attr, decl); |
| 479 | decl->setParent(0); |
| 480 | decl->setNode(0); |
| 481 | decl->setMappedState(ePersistent, attr.name(), attr.value()); |
| 482 | } |
| 483 | return decl; |
| 484 | } |
| 485 | |
| 486 | CSSMutableStyleDeclaration* HTMLTableElement::getSharedCellDecl() |
| 487 | { |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 488 | MappedAttribute attr(cellborderAttr, m_rulesAttr == AllRules ? "solid-all" : |
| 489 | (m_rulesAttr == ColsRules ? "solid-cols" : |
bdash | 53ded39 | 2007-06-25 10:23:33 +0000 | [diff] [blame] | 490 | (m_rulesAttr == RowsRules ? "solid-rows" : (!m_borderAttr || m_rulesAttr == GroupsRules || m_rulesAttr == NoneRules ? "none" : (m_borderColorAttr ? "solid" : "inset"))))); |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 491 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 492 | CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, &attr); |
| 493 | if (!decl) { |
| 494 | decl = new CSSMappedAttributeDeclaration(0); |
| 495 | decl->setParent(document()->elementSheet()); |
| 496 | decl->setNode(this); |
| 497 | decl->setStrictParsing(false); // Mapped attributes are just always quirky. |
| 498 | |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 499 | decl->ref(); // This single ref pins us in the table until the document dies. |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 500 | |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 501 | if (m_rulesAttr == ColsRules) { |
| 502 | decl->setProperty(CSS_PROP_BORDER_LEFT_WIDTH, CSS_VAL_THIN, false); |
| 503 | decl->setProperty(CSS_PROP_BORDER_RIGHT_WIDTH, CSS_VAL_THIN, false); |
| 504 | decl->setProperty(CSS_PROP_BORDER_LEFT_STYLE, CSS_VAL_SOLID, false); |
| 505 | decl->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, CSS_VAL_SOLID, false); |
| 506 | decl->setProperty(CSS_PROP_BORDER_COLOR, "inherit", false); |
| 507 | } else if (m_rulesAttr == RowsRules) { |
| 508 | decl->setProperty(CSS_PROP_BORDER_TOP_WIDTH, CSS_VAL_THIN, false); |
| 509 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_WIDTH, CSS_VAL_THIN, false); |
| 510 | decl->setProperty(CSS_PROP_BORDER_TOP_STYLE, CSS_VAL_SOLID, false); |
| 511 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, CSS_VAL_SOLID, false); |
| 512 | decl->setProperty(CSS_PROP_BORDER_COLOR, "inherit", false); |
bdash | 53ded39 | 2007-06-25 10:23:33 +0000 | [diff] [blame] | 513 | } else if (m_rulesAttr != GroupsRules && m_rulesAttr != NoneRules && (m_borderAttr || m_rulesAttr == AllRules)) { |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 514 | decl->setProperty(CSS_PROP_BORDER_WIDTH, "1px", false); |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 515 | int v = (m_borderColorAttr || m_rulesAttr == AllRules) ? CSS_VAL_SOLID : CSS_VAL_INSET; |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 516 | decl->setProperty(CSS_PROP_BORDER_TOP_STYLE, v, false); |
| 517 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, v, false); |
| 518 | decl->setProperty(CSS_PROP_BORDER_LEFT_STYLE, v, false); |
| 519 | decl->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, v, false); |
| 520 | decl->setProperty(CSS_PROP_BORDER_COLOR, "inherit", false); |
| 521 | } |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 522 | else |
| 523 | decl->setProperty(CSS_PROP_BORDER_WIDTH, "0", false); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 524 | |
| 525 | setMappedAttributeDecl(ePersistent, &attr, decl); |
| 526 | decl->setParent(0); |
| 527 | decl->setNode(0); |
| 528 | decl->setMappedState(ePersistent, attr.name(), attr.value()); |
| 529 | } |
| 530 | return decl; |
| 531 | } |
| 532 | |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 533 | CSSMutableStyleDeclaration* HTMLTableElement::getSharedGroupDecl(bool rows) |
| 534 | { |
| 535 | if (m_rulesAttr != GroupsRules) |
| 536 | return 0; |
| 537 | |
| 538 | MappedAttribute attr(rulesAttr, rows ? "rowgroups" : "colgroups"); |
| 539 | CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, &attr); |
| 540 | if (!decl) { |
| 541 | decl = new CSSMappedAttributeDeclaration(0); |
| 542 | decl->setParent(document()->elementSheet()); |
| 543 | decl->setNode(this); |
| 544 | decl->setStrictParsing(false); // Mapped attributes are just always quirky. |
| 545 | |
| 546 | decl->ref(); // This single ref pins us in the table until the document dies. |
| 547 | |
| 548 | if (rows) { |
| 549 | decl->setProperty(CSS_PROP_BORDER_TOP_WIDTH, CSS_VAL_THIN, false); |
| 550 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_WIDTH, CSS_VAL_THIN, false); |
| 551 | decl->setProperty(CSS_PROP_BORDER_TOP_STYLE, CSS_VAL_SOLID, false); |
| 552 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, CSS_VAL_SOLID, false); |
| 553 | } else { |
| 554 | decl->setProperty(CSS_PROP_BORDER_LEFT_WIDTH, CSS_VAL_THIN, false); |
| 555 | decl->setProperty(CSS_PROP_BORDER_RIGHT_WIDTH, CSS_VAL_THIN, false); |
| 556 | decl->setProperty(CSS_PROP_BORDER_LEFT_STYLE, CSS_VAL_SOLID, false); |
| 557 | decl->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, CSS_VAL_SOLID, false); |
| 558 | } |
| 559 | |
| 560 | setMappedAttributeDecl(ePersistent, &attr, decl); |
| 561 | decl->setParent(0); |
| 562 | decl->setNode(0); |
| 563 | decl->setMappedState(ePersistent, attr.name(), attr.value()); |
| 564 | } |
| 565 | |
| 566 | return decl; |
| 567 | } |
| 568 | |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 569 | void HTMLTableElement::attach() |
| 570 | { |
ggaren | f9f32ae | 2007-03-26 20:08:53 +0000 | [diff] [blame] | 571 | ASSERT(!m_attached); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 572 | HTMLElement::attach(); |
| 573 | if (renderer() && renderer()->isTable()) |
hyatt | eef21e0 | 2006-09-17 07:57:56 +0000 | [diff] [blame] | 574 | static_cast<RenderTable*>(renderer())->setCellPadding(m_padding); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | bool HTMLTableElement::isURLAttribute(Attribute *attr) const |
| 578 | { |
| 579 | return attr->name() == backgroundAttr; |
| 580 | } |
| 581 | |
eseidel | d82076bf | 2006-05-25 21:41:29 +0000 | [diff] [blame] | 582 | PassRefPtr<HTMLCollection> HTMLTableElement::rows() |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 583 | { |
darin@apple.com | eb70180 | 2008-01-03 01:25:51 +0000 | [diff] [blame^] | 584 | return new HTMLTableRowsCollection(this); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 585 | } |
| 586 | |
eseidel | d82076bf | 2006-05-25 21:41:29 +0000 | [diff] [blame] | 587 | PassRefPtr<HTMLCollection> HTMLTableElement::tBodies() |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 588 | { |
ap | c548c22 | 2006-06-24 12:53:57 +0000 | [diff] [blame] | 589 | return new HTMLCollection(this, HTMLCollection::TableTBodies); |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | String HTMLTableElement::align() const |
| 593 | { |
| 594 | return getAttribute(alignAttr); |
| 595 | } |
| 596 | |
| 597 | void HTMLTableElement::setAlign(const String &value) |
| 598 | { |
| 599 | setAttribute(alignAttr, value); |
| 600 | } |
| 601 | |
| 602 | String HTMLTableElement::bgColor() const |
| 603 | { |
| 604 | return getAttribute(bgcolorAttr); |
| 605 | } |
| 606 | |
| 607 | void HTMLTableElement::setBgColor(const String &value) |
| 608 | { |
| 609 | setAttribute(bgcolorAttr, value); |
| 610 | } |
| 611 | |
| 612 | String HTMLTableElement::border() const |
| 613 | { |
| 614 | return getAttribute(borderAttr); |
| 615 | } |
| 616 | |
| 617 | void HTMLTableElement::setBorder(const String &value) |
| 618 | { |
| 619 | setAttribute(borderAttr, value); |
| 620 | } |
| 621 | |
| 622 | String HTMLTableElement::cellPadding() const |
| 623 | { |
| 624 | return getAttribute(cellpaddingAttr); |
| 625 | } |
| 626 | |
| 627 | void HTMLTableElement::setCellPadding(const String &value) |
| 628 | { |
| 629 | setAttribute(cellpaddingAttr, value); |
| 630 | } |
| 631 | |
| 632 | String HTMLTableElement::cellSpacing() const |
| 633 | { |
| 634 | return getAttribute(cellspacingAttr); |
| 635 | } |
| 636 | |
| 637 | void HTMLTableElement::setCellSpacing(const String &value) |
| 638 | { |
| 639 | setAttribute(cellspacingAttr, value); |
| 640 | } |
| 641 | |
| 642 | String HTMLTableElement::frame() const |
| 643 | { |
| 644 | return getAttribute(frameAttr); |
| 645 | } |
| 646 | |
| 647 | void HTMLTableElement::setFrame(const String &value) |
| 648 | { |
| 649 | setAttribute(frameAttr, value); |
| 650 | } |
| 651 | |
| 652 | String HTMLTableElement::rules() const |
| 653 | { |
| 654 | return getAttribute(rulesAttr); |
| 655 | } |
| 656 | |
| 657 | void HTMLTableElement::setRules(const String &value) |
| 658 | { |
| 659 | setAttribute(rulesAttr, value); |
| 660 | } |
| 661 | |
| 662 | String HTMLTableElement::summary() const |
| 663 | { |
| 664 | return getAttribute(summaryAttr); |
| 665 | } |
| 666 | |
| 667 | void HTMLTableElement::setSummary(const String &value) |
| 668 | { |
| 669 | setAttribute(summaryAttr, value); |
| 670 | } |
| 671 | |
| 672 | String HTMLTableElement::width() const |
| 673 | { |
| 674 | return getAttribute(widthAttr); |
| 675 | } |
| 676 | |
| 677 | void HTMLTableElement::setWidth(const String &value) |
| 678 | { |
| 679 | setAttribute(widthAttr, value); |
| 680 | } |
| 681 | |
| 682 | } |