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

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.h

Issue 20262002: [css3-text] Implement text-decoration property shorthand (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated computed style layout test / operator|= readibility fix Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 PassRefPtr<CSSValue> valueForShadow(const RenderObject*, const ShadowData*, CSSPropertyID, const RenderStyle*) const; 113 PassRefPtr<CSSValue> valueForShadow(const RenderObject*, const ShadowData*, CSSPropertyID, const RenderStyle*) const;
114 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle*, const S tyleColor&) const; 114 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle*, const S tyleColor&) const;
115 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderObject*, const RenderStyle*, int colorProperty) const; 115 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderObject*, const RenderStyle*, int colorProperty) const;
116 PassRefPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtr<SVGPaint>, Ren derStyle*) const; 116 PassRefPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtr<SVGPaint>, Ren derStyle*) const;
117 117
118 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle*) const; 118 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle*) const;
119 119
120 PassRefPtr<CSSValueList> getCSSPropertyValuesForShorthandProperties(const St ylePropertyShorthand&) const; 120 PassRefPtr<CSSValueList> getCSSPropertyValuesForShorthandProperties(const St ylePropertyShorthand&) const;
121 PassRefPtr<CSSValueList> getCSSPropertyValuesForSidesShorthand(const StylePr opertyShorthand&) const; 121 PassRefPtr<CSSValueList> getCSSPropertyValuesForSidesShorthand(const StylePr opertyShorthand&) const;
122 PassRefPtr<CSSValueList> getBackgroundShorthandValue() const; 122 PassRefPtr<CSSValueList> getBackgroundShorthandValue() const;
123 PassRefPtr<CSSValueList> getTextDecorationShorthandValue() const;
123 PassRefPtr<CSSValueList> getCSSPropertyValuesForGridShorthand(const StylePro pertyShorthand&) const; 124 PassRefPtr<CSSValueList> getCSSPropertyValuesForGridShorthand(const StylePro pertyShorthand&) const;
124 125
125 RefPtr<Node> m_node; 126 RefPtr<Node> m_node;
126 PseudoId m_pseudoElementSpecifier; 127 PseudoId m_pseudoElementSpecifier;
127 bool m_allowVisitedStyle; 128 bool m_allowVisitedStyle;
128 unsigned m_refCount; 129 unsigned m_refCount;
129 }; 130 };
130 131
131 } // namespace WebCore 132 } // namespace WebCore
132 133
133 #endif // CSSComputedStyleDeclaration_h 134 #endif // CSSComputedStyleDeclaration_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698