| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <link rel="help" href="http://www.w3.org/TR/2013/WD-SVG2-20130618/" /> | 4 <link rel="help" href="http://www.w3.org/TR/2013/WD-SVG2-20130618/" /> |
| 5 <script src="../../resources/js-test.js"></script> | 5 <script src="../../resources/js-test.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <script> | 8 <script> |
| 9 description("Validates the SVG2 inheritance model."); | 9 description("Validates the SVG2 inheritance model."); |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 checkParent("SVGAnimatedNumber", "Object"); | 39 checkParent("SVGAnimatedNumber", "Object"); |
| 40 checkParent("SVGAnimatedNumberList", "Object"); | 40 checkParent("SVGAnimatedNumberList", "Object"); |
| 41 checkParent("SVGAnimatedPathData", "Object"); | 41 checkParent("SVGAnimatedPathData", "Object"); |
| 42 checkParent("SVGAnimatedPreserveAspectRatio", "Object"); | 42 checkParent("SVGAnimatedPreserveAspectRatio", "Object"); |
| 43 checkParent("SVGAnimatedRect", "Object"); | 43 checkParent("SVGAnimatedRect", "Object"); |
| 44 checkParent("SVGAnimatedString", "Object"); | 44 checkParent("SVGAnimatedString", "Object"); |
| 45 checkParent("SVGAnimatedTransformList", "Object"); | 45 checkParent("SVGAnimatedTransformList", "Object"); |
| 46 checkParent("SVGAnimationElement", "SVGElement"); | 46 checkParent("SVGAnimationElement", "SVGElement"); |
| 47 checkParent("SVGCSSRule", "CSSRule"); | 47 checkParent("SVGCSSRule", "CSSRule"); |
| 48 checkParent("SVGCircleElement", "SVGGeometryElement"); | 48 checkParent("SVGCircleElement", "SVGGeometryElement"); |
| 49 checkParent("SVGClipPathElement", "SVGDefinitionElement"); | 49 checkParent("SVGClipPathElement", "SVGElement"); |
| 50 checkParent("SVGColorProfileElement", "SVGElement"); | 50 checkParent("SVGColorProfileElement", "SVGElement"); |
| 51 checkParent("SVGColorProfileRule", "SVGCSSRule"); | 51 checkParent("SVGColorProfileRule", "SVGCSSRule"); |
| 52 checkParent("SVGCursorElement", "SVGElement"); | 52 checkParent("SVGCursorElement", "SVGElement"); |
| 53 checkParent("SVGDefsElement", "SVGGraphicsElement"); | 53 checkParent("SVGDefsElement", "SVGGraphicsElement"); |
| 54 checkParent("SVGDescElement", "SVGElement"); | 54 checkParent("SVGDescElement", "SVGElement"); |
| 55 checkParent("SVGElement", "Element"); | 55 checkParent("SVGElement", "Element"); |
| 56 checkParent("SVGEllipseElement", "SVGGeometryElement"); | 56 checkParent("SVGEllipseElement", "SVGGeometryElement"); |
| 57 checkParent("SVGForeignObjectElement", "SVGGraphicsElement"); | 57 checkParent("SVGForeignObjectElement", "SVGGraphicsElement"); |
| 58 checkParent("SVGGElement", "SVGGraphicsElement"); | 58 checkParent("SVGGElement", "SVGGraphicsElement"); |
| 59 checkParent("SVGGeometryElement", "SVGGraphicsElement"); | 59 checkParent("SVGGeometryElement", "SVGGraphicsElement"); |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 checkParent("SVGTransform", "Object"); | 124 checkParent("SVGTransform", "Object"); |
| 125 checkParent("SVGTransformList", "Object"); | 125 checkParent("SVGTransformList", "Object"); |
| 126 checkParent("SVGUseElement", "SVGGraphicsElement"); | 126 checkParent("SVGUseElement", "SVGGraphicsElement"); |
| 127 checkParent("SVGViewElement", "SVGElement"); | 127 checkParent("SVGViewElement", "SVGElement"); |
| 128 checkParent("SVGViewSpec", "Object"); | 128 checkParent("SVGViewSpec", "Object"); |
| 129 checkParent("SVGZoomEvent", "UIEvent"); | 129 checkParent("SVGZoomEvent", "UIEvent"); |
| 130 checkParent("TimeEvent", "Event"); | 130 checkParent("TimeEvent", "Event"); |
| 131 </script> | 131 </script> |
| 132 </body> | 132 </body> |
| 133 </html> | 133 </html> |
| OLD | NEW |