a1e6a912d46be01581f164b0d74711d348ba812c
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / html / HTMLHRElement.cpp
1 /*
2  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4  * Copyright (C) 2003, 2010 Apple Inc. All rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public License
17  * along with this library; see the file COPYING.LIB.  If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  *
21  */
22
23 #include "config.h"
24 #include "core/html/HTMLHRElement.h"
25
26 #include "core/CSSPropertyNames.h"
27 #include "core/CSSValueKeywords.h"
28 #include "core/HTMLNames.h"
29 #include "core/css/CSSValuePool.h"
30 #include "core/css/StylePropertySet.h"
31
32 namespace blink {
33
34 using namespace HTMLNames;
35
36 inline HTMLHRElement::HTMLHRElement(Document& document)
37     : HTMLElement(hrTag, document)
38 {
39     ScriptWrappable::init(this);
40 }
41
42 DEFINE_NODE_FACTORY(HTMLHRElement)
43
44 bool HTMLHRElement::isPresentationAttribute(const QualifiedName& name) const
45 {
46     if (name == alignAttr || name == widthAttr || name == colorAttr || name == noshadeAttr || name == sizeAttr)
47         return true;
48     return HTMLElement::isPresentationAttribute(name);
49 }
50
51 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
52 {
53     if (name == alignAttr) {
54         if (equalIgnoringCase(value, "left")) {
55             addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, 0, CSSPrimitiveValue::CSS_PX);
56             addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
57         } else if (equalIgnoringCase(value, "right")) {
58             addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
59             addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, 0, CSSPrimitiveValue::CSS_PX);
60         } else {
61             addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
62             addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
63         }
64     } else if (name == widthAttr) {
65         bool ok;
66         int v = value.toInt(&ok);
67         if (ok && !v)
68             addPropertyToPresentationAttributeStyle(style, CSSPropertyWidth, 1, CSSPrimitiveValue::CSS_PX);
69         else
70             addHTMLLengthToStyle(style, CSSPropertyWidth, value);
71     } else if (name == colorAttr) {
72         addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyle, CSSValueSolid);
73         addHTMLColorToStyle(style, CSSPropertyBorderColor, value);
74         addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value);
75     } else if (name == noshadeAttr) {
76         if (!hasAttribute(colorAttr)) {
77             addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyle, CSSValueSolid);
78
79             RefPtrWillBeRawPtr<CSSPrimitiveValue> darkGrayValue = cssValuePool().createColorValue(Color::darkGray);
80             style->setProperty(CSSPropertyBorderColor, darkGrayValue);
81             style->setProperty(CSSPropertyBackgroundColor, darkGrayValue);
82         }
83     } else if (name == sizeAttr) {
84         StringImpl* si = value.impl();
85         int size = si->toInt();
86         if (size <= 1)
87             addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBottomWidth, 0, CSSPrimitiveValue::CSS_PX);
88         else
89             addPropertyToPresentationAttributeStyle(style, CSSPropertyHeight, size - 2, CSSPrimitiveValue::CSS_PX);
90     } else
91         HTMLElement::collectStyleForPresentationAttribute(name, value, style);
92 }
93
94 }