| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2010 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #include "config.h" | 23 #include "config.h" |
| 24 #include "core/html/HTMLHRElement.h" | 24 #include "core/html/HTMLHRElement.h" |
| 25 | 25 |
| 26 #include "CSSPropertyNames.h" | 26 #include "CSSPropertyNames.h" |
| 27 #include "CSSValueKeywords.h" | 27 #include "CSSValueKeywords.h" |
| 28 #include "HTMLNames.h" | 28 #include "HTMLNames.h" |
| 29 #include "core/css/CSSValuePool.h" | 29 #include "core/css/CSSValuePool.h" |
| 30 #include "core/css/StylePropertySet.h" | 30 #include "core/css/StylePropertySet.h" |
| 31 #include "core/dom/Attribute.h" | |
| 32 | 31 |
| 33 namespace WebCore { | 32 namespace WebCore { |
| 34 | 33 |
| 35 using namespace HTMLNames; | 34 using namespace HTMLNames; |
| 36 | 35 |
| 37 HTMLHRElement::HTMLHRElement(const QualifiedName& tagName, Document* document) | 36 HTMLHRElement::HTMLHRElement(const QualifiedName& tagName, Document* document) |
| 38 : HTMLElement(tagName, document) | 37 : HTMLElement(tagName, document) |
| 39 { | 38 { |
| 40 ASSERT(hasTagName(hrTag)); | 39 ASSERT(hasTagName(hrTag)); |
| 41 ScriptWrappable::init(this); | 40 ScriptWrappable::init(this); |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 int size = si->toInt(); | 92 int size = si->toInt(); |
| 94 if (size <= 1) | 93 if (size <= 1) |
| 95 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBott
omWidth, 0, CSSPrimitiveValue::CSS_PX); | 94 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderBott
omWidth, 0, CSSPrimitiveValue::CSS_PX); |
| 96 else | 95 else |
| 97 addPropertyToPresentationAttributeStyle(style, CSSPropertyHeight, si
ze - 2, CSSPrimitiveValue::CSS_PX); | 96 addPropertyToPresentationAttributeStyle(style, CSSPropertyHeight, si
ze - 2, CSSPrimitiveValue::CSS_PX); |
| 98 } else | 97 } else |
| 99 HTMLElement::collectStyleForPresentationAttribute(name, value, style); | 98 HTMLElement::collectStyleForPresentationAttribute(name, value, style); |
| 100 } | 99 } |
| 101 | 100 |
| 102 } | 101 } |
| OLD | NEW |