Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: Source/core/html/HTMLHRElement.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/html/HTMLFrameSetElement.cpp ('k') | Source/core/html/HTMLHeadElement.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFrameSetElement.cpp ('k') | Source/core/html/HTMLHeadElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698