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

Side by Side Diff: Source/core/layout/style/LayoutStyle.h

Issue 896773002: [svg2] Make 'x' and 'y' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 10 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/frame/UseCounter.cpp ('k') | Source/core/layout/style/SVGLayoutStyle.h » ('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) 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 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 SVGLength* strokeDashOffset() const { return svgStyle().strokeDashOffset(); }
1371 void setStrokeDashOffset(PassRefPtrWillBeRawPtr<SVGLength> d) { accessSVGSty le().setStrokeDashOffset(d); } 1371 void setStrokeDashOffset(PassRefPtrWillBeRawPtr<SVGLength> d) { accessSVGSty le().setStrokeDashOffset(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); }
1376 void setY(Length y) { accessSVGStyle().setY(y); }
1377
1375 float floodOpacity() const { return svgStyle().floodOpacity(); } 1378 float floodOpacity() const { return svgStyle().floodOpacity(); }
1376 void setFloodOpacity(float f) { accessSVGStyle().setFloodOpacity(f); } 1379 void setFloodOpacity(float f) { accessSVGStyle().setFloodOpacity(f); }
1377 1380
1378 float stopOpacity() const { return svgStyle().stopOpacity(); } 1381 float stopOpacity() const { return svgStyle().stopOpacity(); }
1379 void setStopOpacity(float f) { accessSVGStyle().setStopOpacity(f); } 1382 void setStopOpacity(float f) { accessSVGStyle().setStopOpacity(f); }
1380 1383
1381 void setStopColor(const Color& c) { accessSVGStyle().setStopColor(c); } 1384 void setStopColor(const Color& c) { accessSVGStyle().setStopColor(c); }
1382 void setFloodColor(const Color& c) { accessSVGStyle().setFloodColor(c); } 1385 void setFloodColor(const Color& c) { accessSVGStyle().setFloodColor(c); }
1383 void setLightingColor(const Color& c) { accessSVGStyle().setLightingColor(c) ; } 1386 void setLightingColor(const Color& c) { accessSVGStyle().setLightingColor(c) ; }
1384 1387
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
1851 } 1854 }
1852 1855
1853 inline bool LayoutStyle::hasPseudoElementStyle() const 1856 inline bool LayoutStyle::hasPseudoElementStyle() const
1854 { 1857 {
1855 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1858 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1856 } 1859 }
1857 1860
1858 } // namespace blink 1861 } // namespace blink
1859 1862
1860 #endif // LayoutStyle_h 1863 #endif // LayoutStyle_h
OLDNEW
« no previous file with comments | « Source/core/frame/UseCounter.cpp ('k') | Source/core/layout/style/SVGLayoutStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698