eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 1 | /** |
| 2 | * This file is part of the DOM implementation for KDE. |
| 3 | * |
| 4 | * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
| 5 | * (C) 1997 Torben Weis (weis@kde.org) |
| 6 | * (C) 1998 Waldo Bastian (bastian@kde.org) |
| 7 | * (C) 1999 Lars Knoll (knoll@kde.org) |
| 8 | * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 9 | * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. |
| 10 | * |
| 11 | * This library is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU Library General Public |
| 13 | * License as published by the Free Software Foundation; either |
| 14 | * version 2 of the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This library is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 | * Library General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU Library General Public License |
| 22 | * along with this library; see the file COPYING.LIB. If not, write to |
| 23 | * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 24 | * Boston, MA 02111-1307, USA. |
| 25 | */ |
| 26 | #include "config.h" |
| 27 | #include "HTMLTableElement.h" |
| 28 | |
| 29 | #include "csshelper.h" |
| 30 | #include "CSSPropertyNames.h" |
eseidel | b3f4213 | 2006-05-16 02:08:51 +0000 | [diff] [blame^] | 31 | #include "CSSStyleSheet.h" |
eseidel | 787da6b | 2006-05-12 19:44:03 +0000 | [diff] [blame] | 32 | #include "CSSValueKeywords.h" |
| 33 | #include "Document.h" |
| 34 | #include "ExceptionCode.h" |
| 35 | #include "HTMLCollection.h" |
| 36 | #include "HTMLNames.h" |
| 37 | #include "HTMLTableCaptionElement.h" |
| 38 | #include "HTMLTableSectionElement.h" |
| 39 | #include "RenderTable.h" |
| 40 | |
| 41 | namespace WebCore { |
| 42 | |
| 43 | using namespace HTMLNames; |
| 44 | |
| 45 | HTMLTableElement::HTMLTableElement(Document *doc) |
| 46 | : HTMLElement(tableTag, doc) |
| 47 | , head(0) |
| 48 | , foot(0) |
| 49 | , firstBody(0) |
| 50 | , tCaption(0) |
| 51 | , m_noBorder(true) |
| 52 | , m_solid(false) |
| 53 | , padding(1) |
| 54 | { |
| 55 | } |
| 56 | |
| 57 | HTMLTableElement::~HTMLTableElement() |
| 58 | { |
| 59 | if (firstBody) |
| 60 | firstBody->deref(); |
| 61 | } |
| 62 | |
| 63 | bool HTMLTableElement::checkDTD(const Node* newChild) |
| 64 | { |
| 65 | return newChild->isTextNode() || newChild->hasTagName(captionTag) || |
| 66 | newChild->hasTagName(colTag) || newChild->hasTagName(colgroupTag) || |
| 67 | newChild->hasTagName(theadTag) || newChild->hasTagName(tfootTag) || |
| 68 | newChild->hasTagName(tbodyTag) || newChild->hasTagName(formTag) || |
| 69 | newChild->hasTagName(scriptTag); |
| 70 | } |
| 71 | |
| 72 | Node* HTMLTableElement::setCaption(HTMLTableCaptionElement* c) |
| 73 | { |
| 74 | ExceptionCode ec = 0; |
| 75 | if (Node* oc = tCaption) |
| 76 | replaceChild(c, oc, ec); |
| 77 | else |
| 78 | insertBefore(c, firstChild(), ec); |
| 79 | tCaption = c; |
| 80 | return tCaption; |
| 81 | } |
| 82 | |
| 83 | Node* HTMLTableElement::setTHead(HTMLTableSectionElement* s) |
| 84 | { |
| 85 | ExceptionCode ec = 0; |
| 86 | if (Node* h = head) |
| 87 | replaceChild(s, h, ec); |
| 88 | else if (foot) |
| 89 | insertBefore(s, foot, ec); |
| 90 | else if (firstBody) |
| 91 | insertBefore(s, firstBody, ec); |
| 92 | else |
| 93 | appendChild(s, ec); |
| 94 | head = s; |
| 95 | return head; |
| 96 | } |
| 97 | |
| 98 | Node* HTMLTableElement::setTFoot(HTMLTableSectionElement *s) |
| 99 | { |
| 100 | ExceptionCode ec = 0; |
| 101 | if (Node *f = foot) |
| 102 | replaceChild(s, f, ec); |
| 103 | else if (firstBody) |
| 104 | insertBefore(s, firstBody, ec); |
| 105 | else |
| 106 | appendChild(s, ec); |
| 107 | foot = s; |
| 108 | return foot; |
| 109 | } |
| 110 | |
| 111 | Node* HTMLTableElement::setTBody(HTMLTableSectionElement *s) |
| 112 | { |
| 113 | ExceptionCode ec = 0; |
| 114 | Node* r; |
| 115 | s->ref(); |
| 116 | if (Node *fb = firstBody) { |
| 117 | replaceChild(s, fb, ec); |
| 118 | fb->deref(); |
| 119 | r = s; |
| 120 | } else |
| 121 | appendChild(s, ec); |
| 122 | firstBody = s; |
| 123 | return firstBody; |
| 124 | } |
| 125 | |
| 126 | HTMLElement *HTMLTableElement::createTHead() |
| 127 | { |
| 128 | if (!head) { |
| 129 | ExceptionCode ec = 0; |
| 130 | head = new HTMLTableSectionElement(theadTag, document(), true /* implicit */); |
| 131 | if (foot) |
| 132 | insertBefore(head, foot, ec); |
| 133 | else if (firstBody) |
| 134 | insertBefore(head, firstBody, ec); |
| 135 | else |
| 136 | appendChild(head, ec); |
| 137 | } |
| 138 | return head; |
| 139 | } |
| 140 | |
| 141 | void HTMLTableElement::deleteTHead() |
| 142 | { |
| 143 | if (head) { |
| 144 | ExceptionCode ec = 0; |
| 145 | head->ref(); |
| 146 | HTMLElement::removeChild(head, ec); |
| 147 | head->deref(); |
| 148 | } |
| 149 | head = 0; |
| 150 | } |
| 151 | |
| 152 | HTMLElement *HTMLTableElement::createTFoot() |
| 153 | { |
| 154 | if (!foot) { |
| 155 | ExceptionCode ec = 0; |
| 156 | foot = new HTMLTableSectionElement(tfootTag, document(), true /*implicit */); |
| 157 | if (firstBody) |
| 158 | insertBefore(foot, firstBody, ec); |
| 159 | else |
| 160 | appendChild(foot, ec); |
| 161 | } |
| 162 | return foot; |
| 163 | } |
| 164 | |
| 165 | void HTMLTableElement::deleteTFoot() |
| 166 | { |
| 167 | if (foot) { |
| 168 | ExceptionCode ec = 0; |
| 169 | foot->ref(); |
| 170 | HTMLElement::removeChild(foot, ec); |
| 171 | foot->deref(); |
| 172 | } |
| 173 | foot = 0; |
| 174 | } |
| 175 | |
| 176 | HTMLElement *HTMLTableElement::createCaption() |
| 177 | { |
| 178 | if (!tCaption) { |
| 179 | ExceptionCode ec = 0; |
| 180 | tCaption = new HTMLTableCaptionElement(document()); |
| 181 | insertBefore(tCaption, firstChild(), ec); |
| 182 | } |
| 183 | return tCaption; |
| 184 | } |
| 185 | |
| 186 | void HTMLTableElement::deleteCaption() |
| 187 | { |
| 188 | if (tCaption) { |
| 189 | ExceptionCode ec = 0; |
| 190 | tCaption->ref(); |
| 191 | HTMLElement::removeChild(tCaption, ec); |
| 192 | tCaption->deref(); |
| 193 | } |
| 194 | tCaption = 0; |
| 195 | } |
| 196 | |
| 197 | HTMLElement *HTMLTableElement::insertRow(int index, ExceptionCode& ec) |
| 198 | { |
| 199 | // The DOM requires that we create a tbody if the table is empty |
| 200 | // (cf DOM2TS HTMLTableElement31 test) |
| 201 | // (note: this is different from "if the table has no sections", since we can have |
| 202 | // <TABLE><TR>) |
| 203 | if (!firstBody && !head && !foot) |
| 204 | setTBody(new HTMLTableSectionElement(tbodyTag, document(), true /* implicit */)); |
| 205 | |
| 206 | // IE treats index=-1 as default value meaning 'append after last' |
| 207 | // This isn't in the DOM. So, not implemented yet. |
| 208 | HTMLTableSectionElement* section = 0L; |
| 209 | HTMLTableSectionElement* lastSection = 0L; |
| 210 | Node *node = firstChild(); |
| 211 | bool append = (index == -1); |
| 212 | bool found = false; |
| 213 | for (; node && (index>=0 || append) ; node = node->nextSibling()) |
| 214 | { |
| 215 | // there could be 2 tfoot elements in the table. Only the first one is the "foot", that's why we have the more |
| 216 | // complicated if statement below. |
| 217 | if (node != foot && (node->hasTagName(theadTag) || node->hasTagName(tfootTag) || node->hasTagName(tbodyTag))) |
| 218 | { |
| 219 | section = static_cast<HTMLTableSectionElement*>(node); |
| 220 | lastSection = section; |
| 221 | if (!append) { |
| 222 | int rows = section->numRows(); |
| 223 | if (rows >= index) { |
| 224 | found = true; |
| 225 | break; |
| 226 | } else |
| 227 | index -= rows; |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | if (!found && foot) |
| 232 | section = static_cast<HTMLTableSectionElement*>(foot); |
| 233 | |
| 234 | // Index == 0 means "insert before first row in current section" |
| 235 | // or "append after last row" (if there's no current section anymore) |
| 236 | if (!section && (index == 0 || append)) { |
| 237 | section = lastSection; |
| 238 | index = section ? section->numRows() : 0; |
| 239 | } |
| 240 | if (section && (index >= 0 || append)) |
| 241 | return section->insertRow(index, ec); |
| 242 | else { |
| 243 | // No more sections => index is too big |
| 244 | ec = INDEX_SIZE_ERR; |
| 245 | return 0L; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | void HTMLTableElement::deleteRow(int index, ExceptionCode& ec) |
| 250 | { |
| 251 | HTMLTableSectionElement* section = 0L; |
| 252 | Node *node = firstChild(); |
| 253 | bool lastRow = index == -1; |
| 254 | HTMLTableSectionElement* lastSection = 0L; |
| 255 | bool found = false; |
| 256 | for (; node ; node = node->nextSibling()) |
| 257 | { |
| 258 | if (node != foot && (node->hasTagName(theadTag) || node->hasTagName(tfootTag) || |
| 259 | node->hasTagName(tbodyTag))) { |
| 260 | section = static_cast<HTMLTableSectionElement*>(node); |
| 261 | lastSection = section; |
| 262 | int rows = section->numRows(); |
| 263 | if (!lastRow) |
| 264 | { |
| 265 | if (rows > index) { |
| 266 | found = true; |
| 267 | break; |
| 268 | } else |
| 269 | index -= rows; |
| 270 | } |
| 271 | } |
| 272 | section = 0L; |
| 273 | } |
| 274 | if (!found && foot) |
| 275 | section = static_cast<HTMLTableSectionElement*>(foot); |
| 276 | |
| 277 | if (lastRow) |
| 278 | lastSection->deleteRow(-1, ec); |
| 279 | else if (section && index >= 0 && index < section->numRows()) |
| 280 | section->deleteRow(index, ec); |
| 281 | else |
| 282 | ec = INDEX_SIZE_ERR; |
| 283 | } |
| 284 | |
| 285 | ContainerNode* HTMLTableElement::addChild(PassRefPtr<Node> child) |
| 286 | { |
| 287 | if (child->hasTagName(formTag)) { |
| 288 | // First add the child. |
| 289 | HTMLElement::addChild(child); |
| 290 | |
| 291 | // Now simply return ourselves as the container to insert into. |
| 292 | // This has the effect of demoting the form to a leaf and moving it safely out of the way. |
| 293 | return this; |
| 294 | } |
| 295 | |
| 296 | // The creation of <tbody> elements relies on the "childAllowed" check, |
| 297 | // so we need to do it even for XML documents. |
| 298 | assert(child->nodeType() != DOCUMENT_FRAGMENT_NODE); |
| 299 | if (!document()->isHTMLDocument() && !childAllowed(child.get())) |
| 300 | return 0; |
| 301 | |
| 302 | ContainerNode* container = HTMLElement::addChild(child.get()); |
| 303 | if (container) { |
| 304 | if (!tCaption && child->hasTagName(captionTag)) |
| 305 | tCaption = static_cast<HTMLTableCaptionElement*>(child.get()); |
| 306 | else if (!head && child->hasTagName(theadTag)) |
| 307 | head = static_cast<HTMLTableSectionElement*>(child.get()); |
| 308 | else if (!foot && child->hasTagName(tfootTag)) |
| 309 | foot = static_cast<HTMLTableSectionElement*>(child.get()); |
| 310 | else if (!firstBody && child->hasTagName(tbodyTag)) { |
| 311 | firstBody = static_cast<HTMLTableSectionElement*>(child.get()); |
| 312 | firstBody->ref(); |
| 313 | } |
| 314 | } |
| 315 | return container; |
| 316 | } |
| 317 | |
| 318 | void HTMLTableElement::childrenChanged() |
| 319 | { |
| 320 | HTMLElement::childrenChanged(); |
| 321 | |
| 322 | if (firstBody && firstBody->parentNode() != this) { |
| 323 | firstBody->deref(); |
| 324 | firstBody = 0; |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | bool HTMLTableElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const |
| 329 | { |
| 330 | if (attrName == backgroundAttr) { |
| 331 | result = (MappedAttributeEntry)(eLastEntry + document()->docID()); |
| 332 | return false; |
| 333 | } |
| 334 | |
| 335 | if (attrName == widthAttr || |
| 336 | attrName == heightAttr || |
| 337 | attrName == bgcolorAttr || |
| 338 | attrName == cellspacingAttr || |
| 339 | attrName == vspaceAttr || |
| 340 | attrName == hspaceAttr || |
| 341 | attrName == valignAttr) { |
| 342 | result = eUniversal; |
| 343 | return false; |
| 344 | } |
| 345 | |
| 346 | if (attrName == bordercolorAttr) { |
| 347 | result = eUniversal; |
| 348 | return true; |
| 349 | } |
| 350 | |
| 351 | if (attrName == borderAttr) { |
| 352 | result = eTable; |
| 353 | return true; |
| 354 | } |
| 355 | |
| 356 | if (attrName == alignAttr) { |
| 357 | result = eTable; |
| 358 | return false; |
| 359 | } |
| 360 | |
| 361 | return HTMLElement::mapToEntry(attrName, result); |
| 362 | } |
| 363 | |
| 364 | void HTMLTableElement::parseMappedAttribute(MappedAttribute *attr) |
| 365 | { |
| 366 | if (attr->name() == widthAttr) |
| 367 | addCSSLength(attr, CSS_PROP_WIDTH, attr->value()); |
| 368 | else if (attr->name() == heightAttr) |
| 369 | addCSSLength(attr, CSS_PROP_HEIGHT, attr->value()); |
| 370 | else if (attr->name() == borderAttr) { |
| 371 | m_noBorder = true; |
| 372 | if (attr->decl()) { |
| 373 | RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSS_PROP_BORDER_LEFT_WIDTH); |
| 374 | if (val && val->isPrimitiveValue()) { |
| 375 | CSSPrimitiveValue* primVal = static_cast<CSSPrimitiveValue*>(val.get()); |
| 376 | m_noBorder = !primVal->getFloatValue(CSSPrimitiveValue::CSS_NUMBER); |
| 377 | } |
| 378 | } else if (!attr->isNull()) { |
| 379 | // ### this needs more work, as the border value is not only |
| 380 | // the border of the box, but also between the cells |
| 381 | int border = 0; |
| 382 | if (attr->isEmpty()) |
| 383 | border = 1; |
| 384 | else |
| 385 | border = attr->value().toInt(); |
| 386 | #ifdef DEBUG_DRAW_BORDER |
| 387 | border=1; |
| 388 | #endif |
| 389 | m_noBorder = !border; |
| 390 | addCSSLength(attr, CSS_PROP_BORDER_WIDTH, String::number(border)); |
| 391 | } |
| 392 | } else if (attr->name() == bgcolorAttr) |
| 393 | addCSSColor(attr, CSS_PROP_BACKGROUND_COLOR, attr->value()); |
| 394 | else if (attr->name() == bordercolorAttr) { |
| 395 | m_solid = attr->decl(); |
| 396 | if (!attr->decl() && !attr->isEmpty()) { |
| 397 | addCSSColor(attr, CSS_PROP_BORDER_COLOR, attr->value()); |
| 398 | addCSSProperty(attr, CSS_PROP_BORDER_TOP_STYLE, CSS_VAL_SOLID); |
| 399 | addCSSProperty(attr, CSS_PROP_BORDER_BOTTOM_STYLE, CSS_VAL_SOLID); |
| 400 | addCSSProperty(attr, CSS_PROP_BORDER_LEFT_STYLE, CSS_VAL_SOLID); |
| 401 | addCSSProperty(attr, CSS_PROP_BORDER_RIGHT_STYLE, CSS_VAL_SOLID); |
| 402 | m_solid = true; |
| 403 | } |
| 404 | } else if (attr->name() == backgroundAttr) { |
| 405 | String url = WebCore::parseURL(attr->value()); |
| 406 | if (!url.isEmpty()) |
| 407 | addCSSImageProperty(attr, CSS_PROP_BACKGROUND_IMAGE, document()->completeURL(url)); |
| 408 | } else if (attr->name() == frameAttr) { |
| 409 | } else if (attr->name() == rulesAttr) { |
| 410 | } else if (attr->name() == cellspacingAttr) { |
| 411 | if (!attr->value().isEmpty()) |
| 412 | addCSSLength(attr, CSS_PROP_BORDER_SPACING, attr->value()); |
| 413 | } else if (attr->name() == cellpaddingAttr) { |
| 414 | if (!attr->value().isEmpty()) |
| 415 | padding = max(0, attr->value().toInt()); |
| 416 | else |
| 417 | padding = 1; |
| 418 | if (renderer() && renderer()->isTable()) { |
| 419 | static_cast<RenderTable*>(renderer())->setCellPadding(padding); |
| 420 | if (!renderer()->needsLayout()) |
| 421 | renderer()->setNeedsLayout(true); |
| 422 | } |
| 423 | } else if (attr->name() == colsAttr) { |
| 424 | // ### |
| 425 | } else if (attr->name() == vspaceAttr) { |
| 426 | addCSSLength(attr, CSS_PROP_MARGIN_TOP, attr->value()); |
| 427 | addCSSLength(attr, CSS_PROP_MARGIN_BOTTOM, attr->value()); |
| 428 | } else if (attr->name() == hspaceAttr) { |
| 429 | addCSSLength(attr, CSS_PROP_MARGIN_LEFT, attr->value()); |
| 430 | addCSSLength(attr, CSS_PROP_MARGIN_RIGHT, attr->value()); |
| 431 | } else if (attr->name() == alignAttr) { |
| 432 | if (!attr->value().isEmpty()) |
| 433 | addCSSProperty(attr, CSS_PROP_FLOAT, attr->value()); |
| 434 | } else if (attr->name() == valignAttr) { |
| 435 | if (!attr->value().isEmpty()) |
| 436 | addCSSProperty(attr, CSS_PROP_VERTICAL_ALIGN, attr->value()); |
| 437 | } else |
| 438 | HTMLElement::parseMappedAttribute(attr); |
| 439 | } |
| 440 | |
| 441 | CSSMutableStyleDeclaration* HTMLTableElement::additionalAttributeStyleDecl() |
| 442 | { |
| 443 | if (m_noBorder) |
| 444 | return 0; |
| 445 | MappedAttribute attr(tableborderAttr, m_solid ? "solid" : "outset"); |
| 446 | CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, &attr); |
| 447 | if (!decl) { |
| 448 | decl = new CSSMappedAttributeDeclaration(0); |
| 449 | decl->setParent(document()->elementSheet()); |
| 450 | decl->setNode(this); |
| 451 | decl->setStrictParsing(false); // Mapped attributes are just always quirky. |
| 452 | |
| 453 | decl->ref(); // This single ref pins us in the table until the document dies. |
| 454 | |
| 455 | int v = m_solid ? CSS_VAL_SOLID : CSS_VAL_OUTSET; |
| 456 | decl->setProperty(CSS_PROP_BORDER_TOP_STYLE, v, false); |
| 457 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, v, false); |
| 458 | decl->setProperty(CSS_PROP_BORDER_LEFT_STYLE, v, false); |
| 459 | decl->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, v, false); |
| 460 | |
| 461 | setMappedAttributeDecl(ePersistent, &attr, decl); |
| 462 | decl->setParent(0); |
| 463 | decl->setNode(0); |
| 464 | decl->setMappedState(ePersistent, attr.name(), attr.value()); |
| 465 | } |
| 466 | return decl; |
| 467 | } |
| 468 | |
| 469 | CSSMutableStyleDeclaration* HTMLTableElement::getSharedCellDecl() |
| 470 | { |
| 471 | MappedAttribute attr(cellborderAttr, m_noBorder ? "none" : (m_solid ? "solid" : "inset")); |
| 472 | CSSMappedAttributeDeclaration* decl = getMappedAttributeDecl(ePersistent, &attr); |
| 473 | if (!decl) { |
| 474 | decl = new CSSMappedAttributeDeclaration(0); |
| 475 | decl->setParent(document()->elementSheet()); |
| 476 | decl->setNode(this); |
| 477 | decl->setStrictParsing(false); // Mapped attributes are just always quirky. |
| 478 | |
| 479 | decl->ref(); // This single ref pins us in the table until the table dies. |
| 480 | |
| 481 | if (m_noBorder) |
| 482 | decl->setProperty(CSS_PROP_BORDER_WIDTH, "0", false); |
| 483 | else { |
| 484 | decl->setProperty(CSS_PROP_BORDER_WIDTH, "1px", false); |
| 485 | int v = m_solid ? CSS_VAL_SOLID : CSS_VAL_INSET; |
| 486 | decl->setProperty(CSS_PROP_BORDER_TOP_STYLE, v, false); |
| 487 | decl->setProperty(CSS_PROP_BORDER_BOTTOM_STYLE, v, false); |
| 488 | decl->setProperty(CSS_PROP_BORDER_LEFT_STYLE, v, false); |
| 489 | decl->setProperty(CSS_PROP_BORDER_RIGHT_STYLE, v, false); |
| 490 | decl->setProperty(CSS_PROP_BORDER_COLOR, "inherit", false); |
| 491 | } |
| 492 | |
| 493 | setMappedAttributeDecl(ePersistent, &attr, decl); |
| 494 | decl->setParent(0); |
| 495 | decl->setNode(0); |
| 496 | decl->setMappedState(ePersistent, attr.name(), attr.value()); |
| 497 | } |
| 498 | return decl; |
| 499 | } |
| 500 | |
| 501 | void HTMLTableElement::attach() |
| 502 | { |
| 503 | assert(!m_attached); |
| 504 | HTMLElement::attach(); |
| 505 | if (renderer() && renderer()->isTable()) |
| 506 | static_cast<RenderTable*>(renderer())->setCellPadding(padding); |
| 507 | } |
| 508 | |
| 509 | bool HTMLTableElement::isURLAttribute(Attribute *attr) const |
| 510 | { |
| 511 | return attr->name() == backgroundAttr; |
| 512 | } |
| 513 | |
| 514 | RefPtr<HTMLCollection> HTMLTableElement::rows() |
| 515 | { |
| 516 | return RefPtr<HTMLCollection>(new HTMLCollection(this, HTMLCollection::TABLE_ROWS)); |
| 517 | } |
| 518 | |
| 519 | RefPtr<HTMLCollection> HTMLTableElement::tBodies() |
| 520 | { |
| 521 | return RefPtr<HTMLCollection>(new HTMLCollection(this, HTMLCollection::TABLE_TBODIES)); |
| 522 | } |
| 523 | |
| 524 | String HTMLTableElement::align() const |
| 525 | { |
| 526 | return getAttribute(alignAttr); |
| 527 | } |
| 528 | |
| 529 | void HTMLTableElement::setAlign(const String &value) |
| 530 | { |
| 531 | setAttribute(alignAttr, value); |
| 532 | } |
| 533 | |
| 534 | String HTMLTableElement::bgColor() const |
| 535 | { |
| 536 | return getAttribute(bgcolorAttr); |
| 537 | } |
| 538 | |
| 539 | void HTMLTableElement::setBgColor(const String &value) |
| 540 | { |
| 541 | setAttribute(bgcolorAttr, value); |
| 542 | } |
| 543 | |
| 544 | String HTMLTableElement::border() const |
| 545 | { |
| 546 | return getAttribute(borderAttr); |
| 547 | } |
| 548 | |
| 549 | void HTMLTableElement::setBorder(const String &value) |
| 550 | { |
| 551 | setAttribute(borderAttr, value); |
| 552 | } |
| 553 | |
| 554 | String HTMLTableElement::cellPadding() const |
| 555 | { |
| 556 | return getAttribute(cellpaddingAttr); |
| 557 | } |
| 558 | |
| 559 | void HTMLTableElement::setCellPadding(const String &value) |
| 560 | { |
| 561 | setAttribute(cellpaddingAttr, value); |
| 562 | } |
| 563 | |
| 564 | String HTMLTableElement::cellSpacing() const |
| 565 | { |
| 566 | return getAttribute(cellspacingAttr); |
| 567 | } |
| 568 | |
| 569 | void HTMLTableElement::setCellSpacing(const String &value) |
| 570 | { |
| 571 | setAttribute(cellspacingAttr, value); |
| 572 | } |
| 573 | |
| 574 | String HTMLTableElement::frame() const |
| 575 | { |
| 576 | return getAttribute(frameAttr); |
| 577 | } |
| 578 | |
| 579 | void HTMLTableElement::setFrame(const String &value) |
| 580 | { |
| 581 | setAttribute(frameAttr, value); |
| 582 | } |
| 583 | |
| 584 | String HTMLTableElement::rules() const |
| 585 | { |
| 586 | return getAttribute(rulesAttr); |
| 587 | } |
| 588 | |
| 589 | void HTMLTableElement::setRules(const String &value) |
| 590 | { |
| 591 | setAttribute(rulesAttr, value); |
| 592 | } |
| 593 | |
| 594 | String HTMLTableElement::summary() const |
| 595 | { |
| 596 | return getAttribute(summaryAttr); |
| 597 | } |
| 598 | |
| 599 | void HTMLTableElement::setSummary(const String &value) |
| 600 | { |
| 601 | setAttribute(summaryAttr, value); |
| 602 | } |
| 603 | |
| 604 | String HTMLTableElement::width() const |
| 605 | { |
| 606 | return getAttribute(widthAttr); |
| 607 | } |
| 608 | |
| 609 | void HTMLTableElement::setWidth(const String &value) |
| 610 | { |
| 611 | setAttribute(widthAttr, value); |
| 612 | } |
| 613 | |
| 614 | } |