| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 2 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 3 * Copyright (C) 2006 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 [ | 27 [ |
| 28 NoInterfaceObject | 28 NoInterfaceObject |
| 29 ] interface SVGTests { | 29 ] interface SVGTests { |
| 30 readonly attribute SVGStringList requiredFeatures; | 30 readonly attribute SVGStringList requiredFeatures; |
| 31 readonly attribute SVGStringList requiredExtensions; | 31 readonly attribute SVGStringList requiredExtensions; |
| 32 readonly attribute SVGStringList systemLanguage; | 32 readonly attribute SVGStringList systemLanguage; |
| 33 | 33 |
| 34 boolean hasExtension([Default=Undefined] optional DOMString extension); | 34 boolean hasExtension([Default=Undefined] optional DOMString extension); |
| 35 }; | 35 }; |
| 36 | 36 |
| 37 SVGAElement implements SVGTests; | |
| 38 SVGAnimationElement implements SVGTests; | |
| 39 SVGCircleElement implements SVGTests; | |
| 40 SVGClipPathElement implements SVGTests; | |
| 41 SVGCursorElement implements SVGTests; | |
| 42 SVGDefsElement implements SVGTests; | |
| 43 SVGEllipseElement implements SVGTests; | |
| 44 SVGForeignObjectElement implements SVGTests; | |
| 45 SVGGElement implements SVGTests; | |
| 46 SVGImageElement implements SVGTests; | |
| 47 SVGLineElement implements SVGTests; | |
| 48 SVGMaskElement implements SVGTests; | |
| 49 SVGPathElement implements SVGTests; | |
| 50 SVGPatternElement implements SVGTests; | |
| 51 SVGPolygonElement implements SVGTests; | |
| 52 SVGPolylineElement implements SVGTests; | |
| 53 SVGRectElement implements SVGTests; | |
| 54 SVGSVGElement implements SVGTests; | |
| 55 SVGSwitchElement implements SVGTests; | |
| 56 SVGTextContentElement implements SVGTests; | |
| 57 SVGUseElement implements SVGTests; | |
| OLD | NEW |