| 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&, StyleResolverState&); | 99 static void convertGridTrackList(const CSSValue&, Vector<GridTrackSize>&, Na
medGridLinesMap&, OrderedNamedGridLines&, StyleResolverState&); |
| 100 static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap&
, NamedGridLinesMap&, GridTrackSizingDirection); | 100 static void createImplicitNamedGridLinesFromGridArea(const NamedGridAreaMap&
, NamedGridLinesMap&, GridTrackSizingDirection); |
| 101 static void convertOrderedNamedGridLinesMapToNamedGridLinesMap(const Ordered
NamedGridLines&, NamedGridLinesMap&); | 101 static void convertOrderedNamedGridLinesMapToNamedGridLinesMap(const Ordered
NamedGridLines&, NamedGridLinesMap&); |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 { | 159 { |
| 160 if (value.isStringValue()) | 160 if (value.isStringValue()) |
| 161 return AtomicString(toCSSStringValue(value).value()); | 161 return AtomicString(toCSSStringValue(value).value()); |
| 162 ASSERT(toCSSPrimitiveValue(value).getValueID() == IdForNone); | 162 ASSERT(toCSSPrimitiveValue(value).getValueID() == IdForNone); |
| 163 return nullAtom; | 163 return nullAtom; |
| 164 } | 164 } |
| 165 | 165 |
| 166 } // namespace blink | 166 } // namespace blink |
| 167 | 167 |
| 168 #endif | 168 #endif |
| OLD | NEW |