blob: 20ffef2c5802c4c7fcd9c841eacace249c5d3b71 [file] [log] [blame]
darin@apple.comeb701802008-01-03 01:25:51 +00001/*
eseidel787da6b2006-05-12 19:44:03 +00002 * 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.comeb701802008-01-03 01:25:51 +00007 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved.
eseidel787da6b2006-05-12 19:44:03 +00008 *
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
ddkilzerc8eccec2007-09-26 02:29:57 +000021 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
eseidel787da6b2006-05-12 19:44:03 +000023 */
darin@apple.comeb701802008-01-03 01:25:51 +000024
eseidel787da6b2006-05-12 19:44:03 +000025#include "config.h"
26#include "HTMLTableElement.h"
27
eseidel787da6b2006-05-12 19:44:03 +000028#include "CSSPropertyNames.h"
eseidelb3f42132006-05-16 02:08:51 +000029#include "CSSStyleSheet.h"
eseidel787da6b2006-05-12 19:44:03 +000030#include "CSSValueKeywords.h"
eseidel787da6b2006-05-12 19:44:03 +000031#include "ExceptionCode.h"
eseidel787da6b2006-05-12 19:44:03 +000032#include "HTMLNames.h"
33#include "HTMLTableCaptionElement.h"
darin@apple.comeb701802008-01-03 01:25:51 +000034#include "HTMLTableRowsCollection.h"
35#include "HTMLTableRowElement.h"
eseidel787da6b2006-05-12 19:44:03 +000036#include "HTMLTableSectionElement.h"
37#include "RenderTable.h"
hyattf2cfbe02007-05-24 18:26:21 +000038#include "Text.h"
eseidel787da6b2006-05-12 19:44:03 +000039
40namespace WebCore {
41
42using namespace HTMLNames;
43
44HTMLTableElement::HTMLTableElement(Document *doc)
45 : HTMLElement(tableTag, doc)
hyatteef21e02006-09-17 07:57:56 +000046 , m_borderAttr(false)
47 , m_borderColorAttr(false)
48 , m_frameAttr(false)
49 , m_rulesAttr(UnsetRules)
50 , m_padding(1)
eseidel787da6b2006-05-12 19:44:03 +000051{
52}
53
eseidel787da6b2006-05-12 19:44:03 +000054bool HTMLTableElement::checkDTD(const Node* newChild)
55{
hyattf2cfbe02007-05-24 18:26:21 +000056 if (newChild->isTextNode())
57 return static_cast<const Text*>(newChild)->containsOnlyWhitespace();
58 return newChild->hasTagName(captionTag) ||
eseidel787da6b2006-05-12 19:44:03 +000059 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.comeb701802008-01-03 01:25:51 +000065HTMLTableCaptionElement* HTMLTableElement::caption() const
eseidel787da6b2006-05-12 19:44:03 +000066{
darin@apple.comeb701802008-01-03 01:25:51 +000067 for (Node* child = firstChild(); child; child = child->nextSibling()) {
68 if (child->hasTagName(captionTag))
69 return static_cast<HTMLTableCaptionElement*>(child);
eseidel787da6b2006-05-12 19:44:03 +000070 }
darin@apple.comeb701802008-01-03 01:25:51 +000071 return 0;
72}
73
74void HTMLTableElement::setCaption(PassRefPtr<HTMLTableCaptionElement> newCaption, ExceptionCode& ec)
75{
76 deleteCaption();
77 insertBefore(newCaption, firstChild(), ec);
78}
79
80HTMLTableSectionElement* 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
89void 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
101HTMLTableSectionElement* 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
110void 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
122PassRefPtr<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();
eseidel787da6b2006-05-12 19:44:03 +0000130}
131
132void HTMLTableElement::deleteTHead()
133{
darin@apple.comeb701802008-01-03 01:25:51 +0000134 ExceptionCode ec;
135 removeChild(tHead(), ec);
eseidel787da6b2006-05-12 19:44:03 +0000136}
137
darin@apple.comeb701802008-01-03 01:25:51 +0000138PassRefPtr<HTMLElement> HTMLTableElement::createTFoot()
eseidel787da6b2006-05-12 19:44:03 +0000139{
darin@apple.comeb701802008-01-03 01:25:51 +0000140 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();
eseidel787da6b2006-05-12 19:44:03 +0000146}
147
148void HTMLTableElement::deleteTFoot()
149{
darin@apple.comeb701802008-01-03 01:25:51 +0000150 ExceptionCode ec;
151 removeChild(tFoot(), ec);
eseidel787da6b2006-05-12 19:44:03 +0000152}
153
darin@apple.comeb701802008-01-03 01:25:51 +0000154PassRefPtr<HTMLElement> HTMLTableElement::createCaption()
eseidel787da6b2006-05-12 19:44:03 +0000155{
darin@apple.comeb701802008-01-03 01:25:51 +0000156 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();
eseidel787da6b2006-05-12 19:44:03 +0000162}
163
164void HTMLTableElement::deleteCaption()
165{
darin@apple.comeb701802008-01-03 01:25:51 +0000166 ExceptionCode ec;
167 removeChild(caption(), ec);
168}
169
170HTMLTableSectionElement* HTMLTableElement::lastBody() const
171{
172 for (Node* child = lastChild(); child; child = child->previousSibling()) {
173 if (child->hasTagName(tbodyTag))
174 return static_cast<HTMLTableSectionElement*>(child);
eseidel787da6b2006-05-12 19:44:03 +0000175 }
darin@apple.comeb701802008-01-03 01:25:51 +0000176 return 0;
eseidel787da6b2006-05-12 19:44:03 +0000177}
178
darinf0d19342007-05-01 19:59:53 +0000179PassRefPtr<HTMLElement> HTMLTableElement::insertRow(int index, ExceptionCode& ec)
eseidel787da6b2006-05-12 19:44:03 +0000180{
darin@apple.comeb701802008-01-03 01:25:51 +0000181 if (index < -1) {
eseidel787da6b2006-05-12 19:44:03 +0000182 ec = INDEX_SIZE_ERR;
darinf0d19342007-05-01 19:59:53 +0000183 return 0;
eseidel787da6b2006-05-12 19:44:03 +0000184 }
darin@apple.comeb701802008-01-03 01:25:51 +0000185
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();
eseidel787da6b2006-05-12 19:44:03 +0000221}
222
223void HTMLTableElement::deleteRow(int index, ExceptionCode& ec)
224{
darin@apple.comeb701802008-01-03 01:25:51 +0000225 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;
eseidel787da6b2006-05-12 19:44:03 +0000233 }
eseidel787da6b2006-05-12 19:44:03 +0000234 }
darin@apple.comeb701802008-01-03 01:25:51 +0000235 if (!row) {
eseidel787da6b2006-05-12 19:44:03 +0000236 ec = INDEX_SIZE_ERR;
darin@apple.comeb701802008-01-03 01:25:51 +0000237 return;
238 }
239 row->remove(ec);
eseidel787da6b2006-05-12 19:44:03 +0000240}
241
242ContainerNode* 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.comeb701802008-01-03 01:25:51 +0000253 return HTMLElement::addChild(child.get());
eseidel787da6b2006-05-12 19:44:03 +0000254}
255
eseidel787da6b2006-05-12 19:44:03 +0000256bool 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
hyatteef21e02006-09-17 07:57:56 +0000274 if (attrName == bordercolorAttr || attrName == frameAttr || attrName == rulesAttr) {
eseidel787da6b2006-05-12 19:44:03 +0000275 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;
hyatteef21e02006-09-17 07:57:56 +0000287 }
288
eseidel787da6b2006-05-12 19:44:03 +0000289 return HTMLElement::mapToEntry(attrName, result);
290}
291
rwlbuisda67f4e2007-08-25 16:57:13 +0000292static 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
299static 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.comeb701802008-01-03 01:25:51 +0000317void HTMLTableElement::parseMappedAttribute(MappedAttribute* attr)
eseidel787da6b2006-05-12 19:44:03 +0000318{
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) {
hyatteef21e02006-09-17 07:57:56 +0000324 m_borderAttr = true;
eseidel787da6b2006-05-12 19:44:03 +0000325 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());
weinigc109d0e2007-07-01 17:38:29 +0000329 m_borderAttr = primVal->getDoubleValue(CSSPrimitiveValue::CSS_NUMBER);
eseidel787da6b2006-05-12 19:44:03 +0000330 }
331 } else if (!attr->isNull()) {
eseidel787da6b2006-05-12 19:44:03 +0000332 int border = 0;
333 if (attr->isEmpty())
334 border = 1;
335 else
336 border = attr->value().toInt();
hyatteef21e02006-09-17 07:57:56 +0000337 m_borderAttr = border;
eseidel787da6b2006-05-12 19:44:03 +0000338 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) {
hyatteef21e02006-09-17 07:57:56 +0000343 m_borderColorAttr = attr->decl();
eseidel787da6b2006-05-12 19:44:03 +0000344 if (!attr->decl() && !attr->isEmpty()) {
345 addCSSColor(attr, CSS_PROP_BORDER_COLOR, attr->value());
hyatteef21e02006-09-17 07:57:56 +0000346 m_borderColorAttr = true;
eseidel787da6b2006-05-12 19:44:03 +0000347 }
348 } else if (attr->name() == backgroundAttr) {
darinf4b05b22006-07-10 05:20:17 +0000349 String url = parseURL(attr->value());
eseidel787da6b2006-05-12 19:44:03 +0000350 if (!url.isEmpty())
351 addCSSImageProperty(attr, CSS_PROP_BACKGROUND_IMAGE, document()->completeURL(url));
352 } else if (attr->name() == frameAttr) {
hyatteef21e02006-09-17 07:57:56 +0000353 // 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 }
eseidel787da6b2006-05-12 19:44:03 +0000401 } else if (attr->name() == rulesAttr) {
hyatteef21e02006-09-17 07:57:56 +0000402 // Cache the value of "rules" so that the pieces of the table can examine it later.
rwlbuisda67f4e2007-08-25 16:57:13 +0000403 TableRules oldRules = m_rulesAttr;
hyatteef21e02006-09-17 07:57:56 +0000404 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.comeb701802008-01-03 01:25:51 +0000419 if (oldRules != m_rulesAttr) {
420 bool cellChanged = false;
421 for (Node* child = firstChild(); child; child = child->nextSibling())
422 cellChanged |= setTableCellsChanged(child);
423 if (cellChanged)
rwlbuisda67f4e2007-08-25 16:57:13 +0000424 setChanged();
darin@apple.comeb701802008-01-03 01:25:51 +0000425 }
eseidel787da6b2006-05-12 19:44:03 +0000426 } 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())
hyatteef21e02006-09-17 07:57:56 +0000431 m_padding = max(0, attr->value().toInt());
eseidel787da6b2006-05-12 19:44:03 +0000432 else
hyatteef21e02006-09-17 07:57:56 +0000433 m_padding = 1;
eseidel787da6b2006-05-12 19:44:03 +0000434 if (renderer() && renderer()->isTable()) {
hyatteef21e02006-09-17 07:57:56 +0000435 static_cast<RenderTable*>(renderer())->setCellPadding(m_padding);
eseidel787da6b2006-05-12 19:44:03 +0000436 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
457CSSMutableStyleDeclaration* HTMLTableElement::additionalAttributeStyleDecl()
458{
hyatteef21e02006-09-17 07:57:56 +0000459 if ((!m_borderAttr && !m_borderColorAttr) || m_frameAttr)
eseidel787da6b2006-05-12 19:44:03 +0000460 return 0;
hyatteef21e02006-09-17 07:57:56 +0000461
462 MappedAttribute attr(tableborderAttr, m_borderColorAttr ? "solid" : "outset");
eseidel787da6b2006-05-12 19:44:03 +0000463 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
hyatteef21e02006-09-17 07:57:56 +0000472 int v = m_borderColorAttr ? CSS_VAL_SOLID : CSS_VAL_OUTSET;
eseidel787da6b2006-05-12 19:44:03 +0000473 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
486CSSMutableStyleDeclaration* HTMLTableElement::getSharedCellDecl()
487{
hyatteef21e02006-09-17 07:57:56 +0000488 MappedAttribute attr(cellborderAttr, m_rulesAttr == AllRules ? "solid-all" :
489 (m_rulesAttr == ColsRules ? "solid-cols" :
bdash53ded392007-06-25 10:23:33 +0000490 (m_rulesAttr == RowsRules ? "solid-rows" : (!m_borderAttr || m_rulesAttr == GroupsRules || m_rulesAttr == NoneRules ? "none" : (m_borderColorAttr ? "solid" : "inset")))));
hyatteef21e02006-09-17 07:57:56 +0000491
eseidel787da6b2006-05-12 19:44:03 +0000492 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
hyatteef21e02006-09-17 07:57:56 +0000499 decl->ref(); // This single ref pins us in the table until the document dies.
eseidel787da6b2006-05-12 19:44:03 +0000500
hyatteef21e02006-09-17 07:57:56 +0000501 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);
bdash53ded392007-06-25 10:23:33 +0000513 } else if (m_rulesAttr != GroupsRules && m_rulesAttr != NoneRules && (m_borderAttr || m_rulesAttr == AllRules)) {
eseidel787da6b2006-05-12 19:44:03 +0000514 decl->setProperty(CSS_PROP_BORDER_WIDTH, "1px", false);
hyatteef21e02006-09-17 07:57:56 +0000515 int v = (m_borderColorAttr || m_rulesAttr == AllRules) ? CSS_VAL_SOLID : CSS_VAL_INSET;
eseidel787da6b2006-05-12 19:44:03 +0000516 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 }
hyatteef21e02006-09-17 07:57:56 +0000522 else
523 decl->setProperty(CSS_PROP_BORDER_WIDTH, "0", false);
eseidel787da6b2006-05-12 19:44:03 +0000524
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
hyatteef21e02006-09-17 07:57:56 +0000533CSSMutableStyleDeclaration* 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
eseidel787da6b2006-05-12 19:44:03 +0000569void HTMLTableElement::attach()
570{
ggarenf9f32ae2007-03-26 20:08:53 +0000571 ASSERT(!m_attached);
eseidel787da6b2006-05-12 19:44:03 +0000572 HTMLElement::attach();
573 if (renderer() && renderer()->isTable())
hyatteef21e02006-09-17 07:57:56 +0000574 static_cast<RenderTable*>(renderer())->setCellPadding(m_padding);
eseidel787da6b2006-05-12 19:44:03 +0000575}
576
577bool HTMLTableElement::isURLAttribute(Attribute *attr) const
578{
579 return attr->name() == backgroundAttr;
580}
581
eseideld82076bf2006-05-25 21:41:29 +0000582PassRefPtr<HTMLCollection> HTMLTableElement::rows()
eseidel787da6b2006-05-12 19:44:03 +0000583{
darin@apple.comeb701802008-01-03 01:25:51 +0000584 return new HTMLTableRowsCollection(this);
eseidel787da6b2006-05-12 19:44:03 +0000585}
586
eseideld82076bf2006-05-25 21:41:29 +0000587PassRefPtr<HTMLCollection> HTMLTableElement::tBodies()
eseidel787da6b2006-05-12 19:44:03 +0000588{
apc548c222006-06-24 12:53:57 +0000589 return new HTMLCollection(this, HTMLCollection::TableTBodies);
eseidel787da6b2006-05-12 19:44:03 +0000590}
591
592String HTMLTableElement::align() const
593{
594 return getAttribute(alignAttr);
595}
596
597void HTMLTableElement::setAlign(const String &value)
598{
599 setAttribute(alignAttr, value);
600}
601
602String HTMLTableElement::bgColor() const
603{
604 return getAttribute(bgcolorAttr);
605}
606
607void HTMLTableElement::setBgColor(const String &value)
608{
609 setAttribute(bgcolorAttr, value);
610}
611
612String HTMLTableElement::border() const
613{
614 return getAttribute(borderAttr);
615}
616
617void HTMLTableElement::setBorder(const String &value)
618{
619 setAttribute(borderAttr, value);
620}
621
622String HTMLTableElement::cellPadding() const
623{
624 return getAttribute(cellpaddingAttr);
625}
626
627void HTMLTableElement::setCellPadding(const String &value)
628{
629 setAttribute(cellpaddingAttr, value);
630}
631
632String HTMLTableElement::cellSpacing() const
633{
634 return getAttribute(cellspacingAttr);
635}
636
637void HTMLTableElement::setCellSpacing(const String &value)
638{
639 setAttribute(cellspacingAttr, value);
640}
641
642String HTMLTableElement::frame() const
643{
644 return getAttribute(frameAttr);
645}
646
647void HTMLTableElement::setFrame(const String &value)
648{
649 setAttribute(frameAttr, value);
650}
651
652String HTMLTableElement::rules() const
653{
654 return getAttribute(rulesAttr);
655}
656
657void HTMLTableElement::setRules(const String &value)
658{
659 setAttribute(rulesAttr, value);
660}
661
662String HTMLTableElement::summary() const
663{
664 return getAttribute(summaryAttr);
665}
666
667void HTMLTableElement::setSummary(const String &value)
668{
669 setAttribute(summaryAttr, value);
670}
671
672String HTMLTableElement::width() const
673{
674 return getAttribute(widthAttr);
675}
676
677void HTMLTableElement::setWidth(const String &value)
678{
679 setAttribute(widthAttr, value);
680}
681
682}