| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * * Redistributions of source code must retain the above copyright | 4 * * Redistributions of source code must retain the above copyright |
| 5 * notice, this list of conditions and the following disclaimer. | 5 * notice, this list of conditions and the following disclaimer. |
| 6 * * Redistributions in binary form must reproduce the above | 6 * * Redistributions in binary form must reproduce the above |
| 7 * copyright notice, this list of conditions and the following disclaimer | 7 * copyright notice, this list of conditions and the following disclaimer |
| 8 * in the documentation and/or other materials provided with the | 8 * in the documentation and/or other materials provided with the |
| 9 * distribution. | 9 * distribution. |
| 10 * * Neither the name of Google Inc. nor the names of its | 10 * * Neither the name of Google Inc. nor the names of its |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 static Length convertLineHeight(StyleResolverState&, const CSSValue&); | 81 static Length convertLineHeight(StyleResolverState&, const CSSValue&); |
| 82 static float convertNumberOrPercentage(StyleResolverState&, const CSSValue&)
; | 82 static float convertNumberOrPercentage(StyleResolverState&, const CSSValue&)
; |
| 83 static StyleMotionRotation convertMotionRotation(StyleResolverState&, const
CSSValue&); | 83 static StyleMotionRotation convertMotionRotation(StyleResolverState&, const
CSSValue&); |
| 84 static LengthPoint convertPosition(StyleResolverState&, const CSSValue&); | 84 static LengthPoint convertPosition(StyleResolverState&, const CSSValue&); |
| 85 static float convertPerspective(StyleResolverState&, const CSSValue&); | 85 static float convertPerspective(StyleResolverState&, const CSSValue&); |
| 86 static Length convertQuirkyLength(StyleResolverState&, const CSSValue&); | 86 static Length convertQuirkyLength(StyleResolverState&, const CSSValue&); |
| 87 static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, const CSSVa
lue&); | 87 static PassRefPtr<QuotesData> convertQuotes(StyleResolverState&, const CSSVa
lue&); |
| 88 static LengthSize convertRadius(StyleResolverState&, const CSSValue&); | 88 static LengthSize convertRadius(StyleResolverState&, const CSSValue&); |
| 89 static EPaintOrder convertPaintOrder(StyleResolverState&, const CSSValue&); | 89 static EPaintOrder convertPaintOrder(StyleResolverState&, const CSSValue&); |
| 90 static PassRefPtr<ShadowList> convertShadow(StyleResolverState&, const CSSVa
lue&); | 90 static PassRefPtr<ShadowList> convertShadow(StyleResolverState&, const CSSVa
lue&); |
| 91 static PassRefPtrWillBeRawPtr<ShapeValue> convertShapeValue(StyleResolverSta
te&, const CSSValue&); | 91 static RawPtr<ShapeValue> convertShapeValue(StyleResolverState&, const CSSVa
lue&); |
| 92 static float convertSpacing(StyleResolverState&, const CSSValue&); | 92 static float convertSpacing(StyleResolverState&, const CSSValue&); |
| 93 template <CSSValueID IdForNone> static AtomicString convertString(StyleResol
verState&, const CSSValue&); | 93 template <CSSValueID IdForNone> static AtomicString convertString(StyleResol
verState&, const CSSValue&); |
| 94 static PassRefPtr<SVGDashArray> convertStrokeDasharray(StyleResolverState&,
const CSSValue&); | 94 static PassRefPtr<SVGDashArray> convertStrokeDasharray(StyleResolverState&,
const CSSValue&); |
| 95 static StyleColor convertStyleColor(StyleResolverState&, const CSSValue&, bo
ol forVisitedLink = false); | 95 static StyleColor convertStyleColor(StyleResolverState&, const CSSValue&, bo
ol forVisitedLink = false); |
| 96 static float convertTextStrokeWidth(StyleResolverState&, const CSSValue&); | 96 static float convertTextStrokeWidth(StyleResolverState&, const CSSValue&); |
| 97 static TransformOrigin convertTransformOrigin(StyleResolverState&, const CSS
Value&); | 97 static TransformOrigin convertTransformOrigin(StyleResolverState&, const CSS
Value&); |
| 98 | 98 |
| 99 static void convertGridTrackList(const CSSValue&, Vector<GridTrackSize>&, Na
medGridLinesMap&, OrderedNamedGridLines&, | 99 static void convertGridTrackList(const CSSValue&, Vector<GridTrackSize>&, Na
medGridLinesMap&, OrderedNamedGridLines&, |
| 100 Vector<GridTrackSize>& autoRepeatTrackSizes, NamedGridLinesMap&, Ordered
NamedGridLines&, | 100 Vector<GridTrackSize>& autoRepeatTrackSizes, NamedGridLinesMap&, Ordered
NamedGridLines&, |
| 101 size_t& autoRepeatInsertionPoint, AutoRepeatType&, StyleResolverState&); | 101 size_t& autoRepeatInsertionPoint, AutoRepeatType&, StyleResolverState&); |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 { | 162 { |
| 163 if (value.isStringValue()) | 163 if (value.isStringValue()) |
| 164 return AtomicString(toCSSStringValue(value).value()); | 164 return AtomicString(toCSSStringValue(value).value()); |
| 165 ASSERT(toCSSPrimitiveValue(value).getValueID() == IdForNone); | 165 ASSERT(toCSSPrimitiveValue(value).getValueID() == IdForNone); |
| 166 return nullAtom; | 166 return nullAtom; |
| 167 } | 167 } |
| 168 | 168 |
| 169 } // namespace blink | 169 } // namespace blink |
| 170 | 170 |
| 171 #endif | 171 #endif |
| OLD | NEW |