| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 2004, 2005 Rob Buis <buis@kde.org> | 3 2004, 2005 Rob Buis <buis@kde.org> |
| 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 | 5 |
| 6 Based on khtml code by: | 6 Based on khtml code by: |
| 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) | 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) |
| 8 (C) 2000 Antti Koivisto (koivisto@kde.org) | 8 (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) | 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) |
| 10 (C) 2002-2003 Apple Computer, Inc. | 10 (C) 2002-2003 Apple Computer, Inc. |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 bool operator==(const StyleStrokeData&) const; | 154 bool operator==(const StyleStrokeData&) const; |
| 155 bool operator!=(const StyleStrokeData& other) const | 155 bool operator!=(const StyleStrokeData& other) const |
| 156 { | 156 { |
| 157 return !(*this == other); | 157 return !(*this == other); |
| 158 } | 158 } |
| 159 | 159 |
| 160 float opacity; | 160 float opacity; |
| 161 float miterLimit; | 161 float miterLimit; |
| 162 | 162 |
| 163 RefPtrWillBePersistent<SVGLength> width; | 163 RefPtrWillBePersistent<SVGLength> width; |
| 164 RefPtrWillBePersistent<SVGLength> dashOffset; | 164 Length dashOffset; |
| 165 RefPtrWillBePersistent<SVGLengthList> dashArray; | 165 RefPtrWillBePersistent<SVGLengthList> dashArray; |
| 166 | 166 |
| 167 SVGPaintType paintType; | 167 SVGPaintType paintType; |
| 168 Color paintColor; | 168 Color paintColor; |
| 169 String paintUri; | 169 String paintUri; |
| 170 SVGPaintType visitedLinkPaintType; | 170 SVGPaintType visitedLinkPaintType; |
| 171 Color visitedLinkPaintColor; | 171 Color visitedLinkPaintColor; |
| 172 String visitedLinkPaintUri; | 172 String visitedLinkPaintUri; |
| 173 | 173 |
| 174 private: | 174 private: |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 Length rx; | 275 Length rx; |
| 276 Length ry; | 276 Length ry; |
| 277 private: | 277 private: |
| 278 StyleLayoutData(); | 278 StyleLayoutData(); |
| 279 StyleLayoutData(const StyleLayoutData&); | 279 StyleLayoutData(const StyleLayoutData&); |
| 280 }; | 280 }; |
| 281 | 281 |
| 282 } // namespace blink | 282 } // namespace blink |
| 283 | 283 |
| 284 #endif // SVGLayoutStyleDefs_h | 284 #endif // SVGLayoutStyleDefs_h |
| OLD | NEW |