1/**
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)
7 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
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
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 * Boston, MA 02110-1301, USA.
23 */
24
25#include "config.h"
26#include "core/html/HTMLTablePartElement.h"
27
28#include "CSSPropertyNames.h"
29#include "CSSValueKeywords.h"
30#include "HTMLNames.h"
31#include "core/css/CSSImageValue.h"
32#include "core/css/StylePropertySet.h"
33#include "core/dom/Document.h"
34#include "core/dom/NodeRenderingTraversal.h"
35#include "core/html/HTMLTableElement.h"
36#include "core/html/parser/HTMLParserIdioms.h"
37
38namespace WebCore {
39
40using namespace HTMLNames;
41
42bool HTMLTablePartElement::isPresentationAttribute(const QualifiedName& name) const
43{
44    if (name == bgcolorAttr || name == backgroundAttr || name == valignAttr || name == alignAttr || name == heightAttr)
45        return true;
46    return HTMLElement::isPresentationAttribute(name);
47}
48
49void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
50{
51    if (name == bgcolorAttr)
52        addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value);
53    else if (name == backgroundAttr) {
54        String url = stripLeadingAndTrailingHTMLSpaces(value);
55        if (!url.isEmpty())
56            style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document()->completeURL(url).string())));
57    } else if (name == valignAttr) {
58        if (equalIgnoringCase(value, "top"))
59            addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueTop);
60        else if (equalIgnoringCase(value, "middle"))
61            addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueMiddle);
62        else if (equalIgnoringCase(value, "bottom"))
63            addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBottom);
64        else if (equalIgnoringCase(value, "baseline"))
65            addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBaseline);
66        else
67            addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value);
68    } else if (name == alignAttr) {
69        if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "center"))
70            addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter);
71        else if (equalIgnoringCase(value, "absmiddle"))
72            addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueCenter);
73        else if (equalIgnoringCase(value, "left"))
74            addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitLeft);
75        else if (equalIgnoringCase(value, "right"))
76            addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitRight);
77        else
78            addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, value);
79    } else if (name == heightAttr) {
80        if (!value.isEmpty())
81            addHTMLLengthToStyle(style, CSSPropertyHeight, value);
82    } else
83        HTMLElement::collectStyleForPresentationAttribute(name, value, style);
84}
85
86HTMLTableElement* HTMLTablePartElement::findParentTable() const
87{
88    ContainerNode* parent = NodeRenderingTraversal::parent(this);
89    while (parent && !isHTMLTableElement(parent))
90        parent = NodeRenderingTraversal::parent(parent);
91    return toHTMLTableElement(parent);
92}
93
94}
95