| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 SVGLength SVGSVGElement::createSVGLength() | 386 SVGLength SVGSVGElement::createSVGLength() |
| 387 { | 387 { |
| 388 return SVGLength(); | 388 return SVGLength(); |
| 389 } | 389 } |
| 390 | 390 |
| 391 SVGAngle SVGSVGElement::createSVGAngle() | 391 SVGAngle SVGSVGElement::createSVGAngle() |
| 392 { | 392 { |
| 393 return SVGAngle(); | 393 return SVGAngle(); |
| 394 } | 394 } |
| 395 | 395 |
| 396 FloatPoint SVGSVGElement::createSVGPoint() | 396 SVGPoint SVGSVGElement::createSVGPoint() |
| 397 { | 397 { |
| 398 return FloatPoint(); | 398 return SVGPoint(); |
| 399 } | 399 } |
| 400 | 400 |
| 401 SVGMatrix SVGSVGElement::createSVGMatrix() | 401 SVGMatrix SVGSVGElement::createSVGMatrix() |
| 402 { | 402 { |
| 403 return SVGMatrix(); | 403 return SVGMatrix(); |
| 404 } | 404 } |
| 405 | 405 |
| 406 FloatRect SVGSVGElement::createSVGRect() | 406 FloatRect SVGSVGElement::createSVGRect() |
| 407 { | 407 { |
| 408 return FloatRect(); | 408 return FloatRect(); |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 continue; | 768 continue; |
| 769 | 769 |
| 770 Element* element = toElement(node); | 770 Element* element = toElement(node); |
| 771 if (element->getIdAttribute() == id) | 771 if (element->getIdAttribute() == id) |
| 772 return element; | 772 return element; |
| 773 } | 773 } |
| 774 return 0; | 774 return 0; |
| 775 } | 775 } |
| 776 | 776 |
| 777 } | 777 } |
| OLD | NEW |