| 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, 2007 Rob Buis <buis@kde.org> | 3 2004, 2005, 2007 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) 1999 Antti Koivisto (koivisto@kde.org) | 7 Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 8 Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) | 8 Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 9 Copyright (C) 2002-2003 Dirk Mueller (mueller@kde.org) | 9 Copyright (C) 2002-2003 Dirk Mueller (mueller@kde.org) |
| 10 Copyright (C) 2002 Apple Computer, Inc. | 10 Copyright (C) 2002 Apple Computer, Inc. |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 } | 193 } |
| 194 | 194 |
| 195 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot
her) const | 195 bool StyleInheritedResourceData::operator==(const StyleInheritedResourceData& ot
her) const |
| 196 { | 196 { |
| 197 return markerStart == other.markerStart | 197 return markerStart == other.markerStart |
| 198 && markerMid == other.markerMid | 198 && markerMid == other.markerMid |
| 199 && markerEnd == other.markerEnd; | 199 && markerEnd == other.markerEnd; |
| 200 } | 200 } |
| 201 | 201 |
| 202 StyleLayoutData::StyleLayoutData() | 202 StyleLayoutData::StyleLayoutData() |
| 203 : d(CSSPathValue::emptyPathValue()) | 203 : d(SVGComputedStyle::initialD()) |
| 204 , cx(SVGComputedStyle::initialCx()) | 204 , cx(SVGComputedStyle::initialCx()) |
| 205 , cy(SVGComputedStyle::initialCy()) | 205 , cy(SVGComputedStyle::initialCy()) |
| 206 , x(SVGComputedStyle::initialX()) | 206 , x(SVGComputedStyle::initialX()) |
| 207 , y(SVGComputedStyle::initialY()) | 207 , y(SVGComputedStyle::initialY()) |
| 208 , r(SVGComputedStyle::initialR()) | 208 , r(SVGComputedStyle::initialR()) |
| 209 , rx(SVGComputedStyle::initialRx()) | 209 , rx(SVGComputedStyle::initialRx()) |
| 210 , ry(SVGComputedStyle::initialRy()) | 210 , ry(SVGComputedStyle::initialRy()) |
| 211 { | 211 { |
| 212 } | 212 } |
| 213 | 213 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 235 && y == other.y | 235 && y == other.y |
| 236 && r == other.r | 236 && r == other.r |
| 237 && rx == other.rx | 237 && rx == other.rx |
| 238 && ry == other.ry | 238 && ry == other.ry |
| 239 && cx == other.cx | 239 && cx == other.cx |
| 240 && cy == other.cy | 240 && cy == other.cy |
| 241 && d->equals(*other.d); | 241 && d->equals(*other.d); |
| 242 } | 242 } |
| 243 | 243 |
| 244 } | 244 } |
| OLD | NEW |