| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2010 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 4 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 5 * Copyright (C) 2006 Apple Inc. All rights reserved. | 5 * Copyright (C) 2006 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 [RuntimeEnabled=smil] boolean animationsPaused(); | 48 [RuntimeEnabled=smil] boolean animationsPaused(); |
| 49 [RuntimeEnabled=smil] float getCurrentTime(); | 49 [RuntimeEnabled=smil] float getCurrentTime(); |
| 50 [RuntimeEnabled=smil] void setCurrentTime(float seconds); | 50 [RuntimeEnabled=smil] void setCurrentTime(float seconds); |
| 51 | 51 |
| 52 // TODO(philipj): The rect arguments should be DOMRectReadOnly. | 52 // TODO(philipj): The rect arguments should be DOMRectReadOnly. |
| 53 NodeList getIntersectionList(SVGRect rect, SVGElement? referenceElement); | 53 NodeList getIntersectionList(SVGRect rect, SVGElement? referenceElement); |
| 54 NodeList getEnclosureList(SVGRect rect, SVGElement? referenceElement); | 54 NodeList getEnclosureList(SVGRect rect, SVGElement? referenceElement); |
| 55 boolean checkIntersection(SVGElement element, SVGRect rect); | 55 boolean checkIntersection(SVGElement element, SVGRect rect); |
| 56 boolean checkEnclosure(SVGElement element, SVGRect rect); | 56 boolean checkEnclosure(SVGElement element, SVGRect rect); |
| 57 void deselectAll(); | 57 void deselectAll(); |
| 58 [MeasureAs=SVG1DOM] SVGNumber createSVGNumber(); | 58 [Measure] SVGNumber createSVGNumber(); |
| 59 [MeasureAs=SVG1DOM] SVGLength createSVGLength(); | 59 [Measure] SVGLength createSVGLength(); |
| 60 [MeasureAs=SVG1DOM] SVGAngle createSVGAngle(); | 60 [Measure] SVGAngle createSVGAngle(); |
| 61 // TODO(philipj): SVGPoint/Matrix/Rect should be DOMPoint/Matrix/Rect. | 61 // TODO(philipj): SVGPoint/Matrix/Rect should be DOMPoint/Matrix/Rect. |
| 62 [MeasureAs=SVG1DOM] SVGPoint createSVGPoint(); | 62 [Measure] SVGPoint createSVGPoint(); |
| 63 [MeasureAs=SVG1DOM] SVGMatrix createSVGMatrix(); | 63 [Measure] SVGMatrix createSVGMatrix(); |
| 64 [MeasureAs=SVG1DOM] SVGRect createSVGRect(); | 64 [Measure] SVGRect createSVGRect(); |
| 65 [MeasureAs=SVG1DOM] SVGTransform createSVGTransform(); | 65 [Measure] SVGTransform createSVGTransform(); |
| 66 [MeasureAs=SVG1DOM] SVGTransform createSVGTransformFromMatrix(SVGMatrix matr
ix); | 66 [Measure] SVGTransform createSVGTransformFromMatrix(SVGMatrix matrix); |
| 67 | 67 |
| 68 // TODO(philipj): The following was part of SVG 1.1: | 68 // TODO(philipj): The following was part of SVG 1.1: |
| 69 // http://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSVGElement | 69 // http://www.w3.org/TR/SVG11/struct.html#InterfaceSVGSVGElement |
| 70 [Measure] Element getElementById(DOMString elementId); | 70 [Measure] Element getElementById(DOMString elementId); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 SVGSVGElement implements SVGFitToViewBox; | 73 SVGSVGElement implements SVGFitToViewBox; |
| 74 SVGSVGElement implements SVGZoomAndPan; | 74 SVGSVGElement implements SVGZoomAndPan; |
| OLD | NEW |