| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1360 void setFillOpacity(float f) { accessSVGStyle().setFillOpacity(f); } | 1360 void setFillOpacity(float f) { accessSVGStyle().setFillOpacity(f); } |
| 1361 | 1361 |
| 1362 const SVGPaintType& strokePaintType() const { return svgStyle().strokePaintT
ype(); } | 1362 const SVGPaintType& strokePaintType() const { return svgStyle().strokePaintT
ype(); } |
| 1363 Color strokePaintColor() const { return svgStyle().strokePaintColor(); } | 1363 Color strokePaintColor() const { return svgStyle().strokePaintColor(); } |
| 1364 float strokeOpacity() const { return svgStyle().strokeOpacity(); } | 1364 float strokeOpacity() const { return svgStyle().strokeOpacity(); } |
| 1365 void setStrokeOpacity(float f) { accessSVGStyle().setStrokeOpacity(f); } | 1365 void setStrokeOpacity(float f) { accessSVGStyle().setStrokeOpacity(f); } |
| 1366 SVGLength* strokeWidth() const { return svgStyle().strokeWidth(); } | 1366 SVGLength* strokeWidth() const { return svgStyle().strokeWidth(); } |
| 1367 void setStrokeWidth(PassRefPtrWillBeRawPtr<SVGLength> w) { accessSVGStyle().
setStrokeWidth(w); } | 1367 void setStrokeWidth(PassRefPtrWillBeRawPtr<SVGLength> w) { accessSVGStyle().
setStrokeWidth(w); } |
| 1368 SVGLengthList* strokeDashArray() const { return svgStyle().strokeDashArray()
; } | 1368 SVGLengthList* strokeDashArray() const { return svgStyle().strokeDashArray()
; } |
| 1369 void setStrokeDashArray(PassRefPtrWillBeRawPtr<SVGLengthList> array) { acces
sSVGStyle().setStrokeDashArray(array); } | 1369 void setStrokeDashArray(PassRefPtrWillBeRawPtr<SVGLengthList> array) { acces
sSVGStyle().setStrokeDashArray(array); } |
| 1370 SVGLength* strokeDashOffset() const { return svgStyle().strokeDashOffset();
} | 1370 const Length& strokeDashOffset() const { return svgStyle().strokeDashOffset(
); } |
| 1371 void setStrokeDashOffset(PassRefPtrWillBeRawPtr<SVGLength> d) { accessSVGSty
le().setStrokeDashOffset(d); } | 1371 void setStrokeDashOffset(const Length& d) { accessSVGStyle().setStrokeDashOf
fset(d); } |
| 1372 float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); } | 1372 float strokeMiterLimit() const { return svgStyle().strokeMiterLimit(); } |
| 1373 void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f);
} | 1373 void setStrokeMiterLimit(float f) { accessSVGStyle().setStrokeMiterLimit(f);
} |
| 1374 | 1374 |
| 1375 void setX(Length x) { accessSVGStyle().setX(x); } | 1375 void setX(Length x) { accessSVGStyle().setX(x); } |
| 1376 void setY(Length y) { accessSVGStyle().setY(y); } | 1376 void setY(Length y) { accessSVGStyle().setY(y); } |
| 1377 void setRx(Length rx) { accessSVGStyle().setRx(rx); } | 1377 void setRx(Length rx) { accessSVGStyle().setRx(rx); } |
| 1378 void setRy(Length ry) { accessSVGStyle().setRy(ry); } | 1378 void setRy(Length ry) { accessSVGStyle().setRy(ry); } |
| 1379 | 1379 |
| 1380 float floodOpacity() const { return svgStyle().floodOpacity(); } | 1380 float floodOpacity() const { return svgStyle().floodOpacity(); } |
| 1381 void setFloodOpacity(float f) { accessSVGStyle().setFloodOpacity(f); } | 1381 void setFloodOpacity(float f) { accessSVGStyle().setFloodOpacity(f); } |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1856 } | 1856 } |
| 1857 | 1857 |
| 1858 inline bool LayoutStyle::hasPseudoElementStyle() const | 1858 inline bool LayoutStyle::hasPseudoElementStyle() const |
| 1859 { | 1859 { |
| 1860 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; | 1860 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; |
| 1861 } | 1861 } |
| 1862 | 1862 |
| 1863 } // namespace blink | 1863 } // namespace blink |
| 1864 | 1864 |
| 1865 #endif // LayoutStyle_h | 1865 #endif // LayoutStyle_h |
| OLD | NEW |