/* * Copyright (C) 1997 Martin Jones (mjones@kde.org) * (C) 1997 Torben Weis (weis@kde.org) * (C) 1998 Waldo Bastian (bastian@kde.org) * (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010, 2011 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "config.h" #include "HTMLTableElement.h" #include "CSSImageValue.h" #include "CSSPropertyNames.h" #include "CSSValueKeywords.h" #include "CSSValuePool.h" #include "ExceptionCode.h" #include "ExceptionCodePlaceholder.h" #include "GenericCachedHTMLCollection.h" #include "HTMLNames.h" #include "HTMLParserIdioms.h" #include "HTMLTableCaptionElement.h" #include "HTMLTableRowElement.h" #include "HTMLTableRowsCollection.h" #include "HTMLTableSectionElement.h" #include "NodeRareData.h" #include "RenderTable.h" #include "StyleProperties.h" #include namespace WebCore { using namespace HTMLNames; HTMLTableElement::HTMLTableElement(const QualifiedName& tagName, Document& document) : HTMLElement(tagName, document) , m_borderAttr(false) , m_borderColorAttr(false) , m_frameAttr(false) , m_rulesAttr(UnsetRules) , m_padding(1) { ASSERT(hasTagName(tableTag)); } Ref HTMLTableElement::create(Document& document) { return adoptRef(*new HTMLTableElement(tableTag, document)); } Ref HTMLTableElement::create(const QualifiedName& tagName, Document& document) { return adoptRef(*new HTMLTableElement(tagName, document)); } HTMLTableCaptionElement* HTMLTableElement::caption() const { for (Node* child = firstChild(); child; child = child->nextSibling()) { if (is(*child)) return downcast(child); } return nullptr; } void HTMLTableElement::setCaption(PassRefPtr newCaption, ExceptionCode& ec) { deleteCaption(); if (newCaption) insertBefore(*newCaption, firstChild(), ec); } HTMLTableSectionElement* HTMLTableElement::tHead() const { for (Node* child = firstChild(); child; child = child->nextSibling()) { if (child->hasTagName(theadTag)) return downcast(child); } return nullptr; } void HTMLTableElement::setTHead(PassRefPtr newHead, ExceptionCode& ec) { if (UNLIKELY(newHead && !newHead->hasTagName(theadTag))) { ec = HIERARCHY_REQUEST_ERR; return; } deleteTHead(); if (!newHead) return; Node* child; for (child = firstChild(); child; child = child->nextSibling()) if (child->isElementNode() && !child->hasTagName(captionTag) && !child->hasTagName(colgroupTag)) break; insertBefore(*newHead, child, ec); } HTMLTableSectionElement* HTMLTableElement::tFoot() const { for (Node* child = firstChild(); child; child = child->nextSibling()) { if (child->hasTagName(tfootTag)) return downcast(child); } return nullptr; } void HTMLTableElement::setTFoot(PassRefPtr newFoot, ExceptionCode& ec) { if (UNLIKELY(newFoot && !newFoot->hasTagName(tfootTag))) { ec = HIERARCHY_REQUEST_ERR; return; } deleteTFoot(); if (!newFoot) return; Node* child; for (child = firstChild(); child; child = child->nextSibling()) if (child->isElementNode() && !child->hasTagName(captionTag) && !child->hasTagName(colgroupTag) && !child->hasTagName(theadTag)) break; insertBefore(*newFoot, child, ec); } Ref HTMLTableElement::createTHead() { if (HTMLTableSectionElement* existingHead = tHead()) return *existingHead; Ref head = HTMLTableSectionElement::create(theadTag, document()); setTHead(head.ptr(), IGNORE_EXCEPTION); return head; } void HTMLTableElement::deleteTHead() { if (auto* tHead = this->tHead()) removeChild(*tHead, IGNORE_EXCEPTION); } Ref HTMLTableElement::createTFoot() { if (HTMLTableSectionElement* existingFoot = tFoot()) return *existingFoot; Ref foot = HTMLTableSectionElement::create(tfootTag, document()); setTFoot(foot.ptr(), IGNORE_EXCEPTION); return foot; } void HTMLTableElement::deleteTFoot() { if (auto* tFoot = this->tFoot()) removeChild(*tFoot, IGNORE_EXCEPTION); } Ref HTMLTableElement::createTBody() { Ref body = HTMLTableSectionElement::create(tbodyTag, document()); Node* referenceElement = lastBody() ? lastBody()->nextSibling() : nullptr; insertBefore(body.copyRef(), referenceElement, ASSERT_NO_EXCEPTION); return body; } Ref HTMLTableElement::createCaption() { if (HTMLTableCaptionElement* existingCaption = caption()) return *existingCaption; Ref caption = HTMLTableCaptionElement::create(captionTag, document()); setCaption(caption.ptr(), IGNORE_EXCEPTION); return caption; } void HTMLTableElement::deleteCaption() { if (auto* caption = this->caption()) removeChild(*caption, IGNORE_EXCEPTION); } HTMLTableSectionElement* HTMLTableElement::lastBody() const { for (Node* child = lastChild(); child; child = child->previousSibling()) { if (child->hasTagName(tbodyTag)) return downcast(child); } return nullptr; } RefPtr HTMLTableElement::insertRow(int index, ExceptionCode& ec) { if (index < -1) { ec = INDEX_SIZE_ERR; return 0; } Ref protectFromMutationEvents(*this); RefPtr lastRow = 0; RefPtr row = 0; if (index == -1) lastRow = HTMLTableRowsCollection::lastRow(*this); else { for (int i = 0; i <= index; ++i) { row = HTMLTableRowsCollection::rowAfter(*this, lastRow.get()); if (!row) { if (i != index) { ec = INDEX_SIZE_ERR; return 0; } break; } lastRow = row; } } RefPtr parent; if (lastRow) parent = row ? row->parentNode() : lastRow->parentNode(); else { parent = lastBody(); if (!parent) { Ref newBody = HTMLTableSectionElement::create(tbodyTag, document()); Ref newRow = HTMLTableRowElement::create(document()); newBody->appendChild(newRow.copyRef(), ec); appendChild(WTFMove(newBody), ec); return WTFMove(newRow); } } Ref newRow = HTMLTableRowElement::create(document()); parent->insertBefore(newRow.copyRef(), row.get(), ec); return WTFMove(newRow); } void HTMLTableElement::deleteRow(int index, ExceptionCode& ec) { HTMLTableRowElement* row = nullptr; if (index == -1) row = HTMLTableRowsCollection::lastRow(*this); else { for (int i = 0; i <= index; ++i) { row = HTMLTableRowsCollection::rowAfter(*this, row); if (!row) break; } } if (!row) { ec = INDEX_SIZE_ERR; return; } row->remove(ec); } static inline bool isTableCellAncestor(Node* n) { return n->hasTagName(theadTag) || n->hasTagName(tbodyTag) || n->hasTagName(tfootTag) || n->hasTagName(trTag) || n->hasTagName(thTag); } static bool setTableCellsChanged(Node* n) { ASSERT(n); bool cellChanged = false; if (n->hasTagName(tdTag)) cellChanged = true; else if (isTableCellAncestor(n)) { for (Node* child = n->firstChild(); child; child = child->nextSibling()) cellChanged |= setTableCellsChanged(child); } if (cellChanged) n->setNeedsStyleRecalc(); return cellChanged; } static bool getBordersFromFrameAttributeValue(const AtomicString& value, bool& borderTop, bool& borderRight, bool& borderBottom, bool& borderLeft) { borderTop = false; borderRight = false; borderBottom = false; borderLeft = false; if (equalLettersIgnoringASCIICase(value, "above")) borderTop = true; else if (equalLettersIgnoringASCIICase(value, "below")) borderBottom = true; else if (equalLettersIgnoringASCIICase(value, "hsides")) borderTop = borderBottom = true; else if (equalLettersIgnoringASCIICase(value, "vsides")) borderLeft = borderRight = true; else if (equalLettersIgnoringASCIICase(value, "lhs")) borderLeft = true; else if (equalLettersIgnoringASCIICase(value, "rhs")) borderRight = true; else if (equalLettersIgnoringASCIICase(value, "box") || equalLettersIgnoringASCIICase(value, "border")) borderTop = borderBottom = borderLeft = borderRight = true; else if (!equalLettersIgnoringASCIICase(value, "void")) return false; return true; } void HTMLTableElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStyleProperties& style) { if (name == widthAttr) addHTMLLengthToStyle(style, CSSPropertyWidth, value); else if (name == heightAttr) addHTMLLengthToStyle(style, CSSPropertyHeight, value); else if (name == borderAttr) addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderWidth, parseBorderWidthAttribute(value), CSSPrimitiveValue::CSS_PX); else if (name == bordercolorAttr) { if (!value.isEmpty()) addHTMLColorToStyle(style, CSSPropertyBorderColor, value); } else if (name == bgcolorAttr) addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value); else if (name == backgroundAttr) { String url = stripLeadingAndTrailingHTMLSpaces(value); if (!url.isEmpty()) style.setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document().completeURL(url).string()))); } else if (name == valignAttr) { if (!value.isEmpty()) addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value); } else if (name == cellspacingAttr) { if (!value.isEmpty()) addHTMLLengthToStyle(style, CSSPropertyBorderSpacing, value); } else if (name == vspaceAttr) { addHTMLLengthToStyle(style, CSSPropertyMarginTop, value); addHTMLLengthToStyle(style, CSSPropertyMarginBottom, value); } else if (name == hspaceAttr) { addHTMLLengthToStyle(style, CSSPropertyMarginLeft, value); addHTMLLengthToStyle(style, CSSPropertyMarginRight, value); } else if (name == alignAttr) { if (!value.isEmpty()) { if (equalLettersIgnoringASCIICase(value, "center")) { addPropertyToPresentationAttributeStyle(style, CSSPropertyWebkitMarginStart, CSSValueAuto); addPropertyToPresentationAttributeStyle(style, CSSPropertyWebkitMarginEnd, CSSValueAuto); } else addPropertyToPresentationAttributeStyle(style, CSSPropertyFloat, value); } } else if (name == rulesAttr) { // The presence of a valid rules attribute causes border collapsing to be enabled. if (m_rulesAttr != UnsetRules) addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderCollapse, CSSValueCollapse); } else if (name == frameAttr) { bool borderTop; bool borderRight; bool borderBottom; bool borderLeft; if (getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft)) { addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderWidth, CSSValueThin); addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderTopStyle, borderTop ? CSSValueSolid : CSSValueHidden); addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomStyle, borderBottom ? CSSValueSolid : CSSValueHidden); addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderLeftStyle, borderLeft ? CSSValueSolid : CSSValueHidden); addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderRightStyle, borderRight ? CSSValueSolid : CSSValueHidden); } } else HTMLElement::collectStyleForPresentationAttribute(name, value, style); } bool HTMLTableElement::isPresentationAttribute(const QualifiedName& name) const { if (name == widthAttr || name == heightAttr || name == bgcolorAttr || name == backgroundAttr || name == valignAttr || name == vspaceAttr || name == hspaceAttr || name == alignAttr || name == cellspacingAttr || name == borderAttr || name == bordercolorAttr || name == frameAttr || name == rulesAttr) return true; return HTMLElement::isPresentationAttribute(name); } void HTMLTableElement::parseAttribute(const QualifiedName& name, const AtomicString& value) { CellBorders bordersBefore = cellBorders(); unsigned short oldPadding = m_padding; if (name == borderAttr) { // FIXME: This attribute is a mess. m_borderAttr = parseBorderWidthAttribute(value); } else if (name == bordercolorAttr) { m_borderColorAttr = !value.isEmpty(); } else if (name == frameAttr) { // FIXME: This attribute is a mess. bool borderTop; bool borderRight; bool borderBottom; bool borderLeft; m_frameAttr = getBordersFromFrameAttributeValue(value, borderTop, borderRight, borderBottom, borderLeft); } else if (name == rulesAttr) { m_rulesAttr = UnsetRules; if (equalLettersIgnoringASCIICase(value, "none")) m_rulesAttr = NoneRules; else if (equalLettersIgnoringASCIICase(value, "groups")) m_rulesAttr = GroupsRules; else if (equalLettersIgnoringASCIICase(value, "rows")) m_rulesAttr = RowsRules; else if (equalLettersIgnoringASCIICase(value, "cols")) m_rulesAttr = ColsRules; else if (equalLettersIgnoringASCIICase(value, "all")) m_rulesAttr = AllRules; } else if (name == cellpaddingAttr) { if (!value.isEmpty()) m_padding = std::max(0, value.toInt()); else m_padding = 1; } else if (name == colsAttr) { // ### } else HTMLElement::parseAttribute(name, value); if (bordersBefore != cellBorders() || oldPadding != m_padding) { m_sharedCellStyle = nullptr; bool cellChanged = false; for (Node* child = firstChild(); child; child = child->nextSibling()) cellChanged |= setTableCellsChanged(child); if (cellChanged) setNeedsStyleRecalc(); } } static StyleProperties* leakBorderStyle(CSSValueID value) { RefPtr style = MutableStyleProperties::create(); style->setProperty(CSSPropertyBorderTopStyle, value); style->setProperty(CSSPropertyBorderBottomStyle, value); style->setProperty(CSSPropertyBorderLeftStyle, value); style->setProperty(CSSPropertyBorderRightStyle, value); return style.release().leakRef(); } const StyleProperties* HTMLTableElement::additionalPresentationAttributeStyle() { if (m_frameAttr) return 0; if (!m_borderAttr && !m_borderColorAttr) { // Setting the border to 'hidden' allows it to win over any border // set on the table's cells during border-conflict resolution. if (m_rulesAttr != UnsetRules) { static StyleProperties* solidBorderStyle = leakBorderStyle(CSSValueHidden); return solidBorderStyle; } return 0; } if (m_borderColorAttr) { static StyleProperties* solidBorderStyle = leakBorderStyle(CSSValueSolid); return solidBorderStyle; } static StyleProperties* outsetBorderStyle = leakBorderStyle(CSSValueOutset); return outsetBorderStyle; } HTMLTableElement::CellBorders HTMLTableElement::cellBorders() const { switch (m_rulesAttr) { case NoneRules: case GroupsRules: return NoBorders; case AllRules: return SolidBorders; case ColsRules: return SolidBordersColsOnly; case RowsRules: return SolidBordersRowsOnly; case UnsetRules: if (!m_borderAttr) return NoBorders; if (m_borderColorAttr) return SolidBorders; return InsetBorders; } ASSERT_NOT_REACHED(); return NoBorders; } RefPtr HTMLTableElement::createSharedCellStyle() { RefPtr style = MutableStyleProperties::create(); auto& cssValuePool = CSSValuePool::singleton(); switch (cellBorders()) { case SolidBordersColsOnly: style->setProperty(CSSPropertyBorderLeftWidth, CSSValueThin); style->setProperty(CSSPropertyBorderRightWidth, CSSValueThin); style->setProperty(CSSPropertyBorderLeftStyle, CSSValueSolid); style->setProperty(CSSPropertyBorderRightStyle, CSSValueSolid); style->setProperty(CSSPropertyBorderColor, cssValuePool.createInheritedValue()); break; case SolidBordersRowsOnly: style->setProperty(CSSPropertyBorderTopWidth, CSSValueThin); style->setProperty(CSSPropertyBorderBottomWidth, CSSValueThin); style->setProperty(CSSPropertyBorderTopStyle, CSSValueSolid); style->setProperty(CSSPropertyBorderBottomStyle, CSSValueSolid); style->setProperty(CSSPropertyBorderColor, cssValuePool.createInheritedValue()); break; case SolidBorders: style->setProperty(CSSPropertyBorderWidth, cssValuePool.createValue(1, CSSPrimitiveValue::CSS_PX)); style->setProperty(CSSPropertyBorderStyle, cssValuePool.createIdentifierValue(CSSValueSolid)); style->setProperty(CSSPropertyBorderColor, cssValuePool.createInheritedValue()); break; case InsetBorders: style->setProperty(CSSPropertyBorderWidth, cssValuePool.createValue(1, CSSPrimitiveValue::CSS_PX)); style->setProperty(CSSPropertyBorderStyle, cssValuePool.createIdentifierValue(CSSValueInset)); style->setProperty(CSSPropertyBorderColor, cssValuePool.createInheritedValue()); break; case NoBorders: // If 'rules=none' then allow any borders set at cell level to take effect. break; } if (m_padding) style->setProperty(CSSPropertyPadding, cssValuePool.createValue(m_padding, CSSPrimitiveValue::CSS_PX)); return style; } const StyleProperties* HTMLTableElement::additionalCellStyle() { if (!m_sharedCellStyle) m_sharedCellStyle = createSharedCellStyle(); return m_sharedCellStyle.get(); } static StyleProperties* leakGroupBorderStyle(int rows) { RefPtr style = MutableStyleProperties::create(); if (rows) { style->setProperty(CSSPropertyBorderTopWidth, CSSValueThin); style->setProperty(CSSPropertyBorderBottomWidth, CSSValueThin); style->setProperty(CSSPropertyBorderTopStyle, CSSValueSolid); style->setProperty(CSSPropertyBorderBottomStyle, CSSValueSolid); } else { style->setProperty(CSSPropertyBorderLeftWidth, CSSValueThin); style->setProperty(CSSPropertyBorderRightWidth, CSSValueThin); style->setProperty(CSSPropertyBorderLeftStyle, CSSValueSolid); style->setProperty(CSSPropertyBorderRightStyle, CSSValueSolid); } return style.release().leakRef(); } const StyleProperties* HTMLTableElement::additionalGroupStyle(bool rows) { if (m_rulesAttr != GroupsRules) return 0; if (rows) { static StyleProperties* rowBorderStyle = leakGroupBorderStyle(true); return rowBorderStyle; } static StyleProperties* columnBorderStyle = leakGroupBorderStyle(false); return columnBorderStyle; } bool HTMLTableElement::isURLAttribute(const Attribute& attribute) const { return attribute.name() == backgroundAttr || HTMLElement::isURLAttribute(attribute); } Ref HTMLTableElement::rows() { return ensureRareData().ensureNodeLists().addCachedCollection(*this, TableRows); } Ref HTMLTableElement::tBodies() { return ensureRareData().ensureNodeLists().addCachedCollection::traversalType>>(*this, TableTBodies); } const AtomicString& HTMLTableElement::rules() const { return fastGetAttribute(rulesAttr); } const AtomicString& HTMLTableElement::summary() const { return fastGetAttribute(summaryAttr); } void HTMLTableElement::addSubresourceAttributeURLs(ListHashSet& urls) const { HTMLElement::addSubresourceAttributeURLs(urls); addSubresourceURL(urls, document().completeURL(fastGetAttribute(backgroundAttr))); } }