Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(815)

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/svg2-inheritance.html

Issue 1416273002: Remove SVGPathElement.pathSegList and related interfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 checkParent("SVGMarkerList", "Object"); 70 checkParent("SVGMarkerList", "Object");
71 checkParent("SVGMaskElement", "SVGElement"); 71 checkParent("SVGMaskElement", "SVGElement");
72 checkParent("SVGMatrix", "Object"); 72 checkParent("SVGMatrix", "Object");
73 checkParent("SVGMeshGradientElement", "SVGGradientElement"); 73 checkParent("SVGMeshGradientElement", "SVGGradientElement");
74 checkParent("SVGMeshPatchElement", "SVGElement"); 74 checkParent("SVGMeshPatchElement", "SVGElement");
75 checkParent("SVGMeshRowElement", "SVGElement"); 75 checkParent("SVGMeshRowElement", "SVGElement");
76 checkParent("SVGMetadataElement", "SVGElement"); 76 checkParent("SVGMetadataElement", "SVGElement");
77 checkParent("SVGNumber", "Object"); 77 checkParent("SVGNumber", "Object");
78 checkParent("SVGNumberList", "Object"); 78 checkParent("SVGNumberList", "Object");
79 checkParent("SVGPathElement", "SVGGeometryElement"); 79 checkParent("SVGPathElement", "SVGGeometryElement");
80 checkParent("SVGPathSeg", "Object");
81 checkParent("SVGPathSegArcAbs", "SVGPathSeg");
82 checkParent("SVGPathSegArcRel", "SVGPathSeg");
83 checkParent("SVGPathSegClosePath", "SVGPathSeg");
84 checkParent("SVGPathSegCurvetoCubicAbs", "SVGPathSeg");
85 checkParent("SVGPathSegCurvetoCubicRel", "SVGPathSeg");
86 checkParent("SVGPathSegCurvetoCubicSmoothAbs", "SVGPathSeg");
87 checkParent("SVGPathSegCurvetoCubicSmoothRel", "SVGPathSeg");
88 checkParent("SVGPathSegCurvetoQuadraticAbs", "SVGPathSeg");
89 checkParent("SVGPathSegCurvetoQuadraticRel", "SVGPathSeg");
90 checkParent("SVGPathSegCurvetoQuadraticSmoothAbs", "SVGPathSeg");
91 checkParent("SVGPathSegCurvetoQuadraticSmoothRel", "SVGPathSeg");
92 checkParent("SVGPathSegLinetoAbs", "SVGPathSeg");
93 checkParent("SVGPathSegLinetoHorizontalAbs", "SVGPathSeg");
94 checkParent("SVGPathSegLinetoHorizontalRel", "SVGPathSeg");
95 checkParent("SVGPathSegLinetoRel", "SVGPathSeg");
96 checkParent("SVGPathSegLinetoVerticalAbs", "SVGPathSeg");
97 checkParent("SVGPathSegLinetoVerticalRel", "SVGPathSeg");
98 checkParent("SVGPathSegList", "Object");
99 checkParent("SVGPathSegMovetoAbs", "SVGPathSeg");
100 checkParent("SVGPathSegMovetoRel", "SVGPathSeg");
101 checkParent("SVGPatternElement", "SVGElement"); 80 checkParent("SVGPatternElement", "SVGElement");
102 checkParent("SVGPoint", "Object"); 81 checkParent("SVGPoint", "Object");
103 checkParent("SVGPointList", "Object"); 82 checkParent("SVGPointList", "Object");
104 checkParent("SVGPolygonElement", "SVGGeometryElement"); 83 checkParent("SVGPolygonElement", "SVGGeometryElement");
105 checkParent("SVGPolylineElement", "SVGGeometryElement"); 84 checkParent("SVGPolylineElement", "SVGGeometryElement");
106 checkParent("SVGPreserveAspectRatio", "Object"); 85 checkParent("SVGPreserveAspectRatio", "Object");
107 checkParent("SVGRadialGradientElement", "SVGGradientElement"); 86 checkParent("SVGRadialGradientElement", "SVGGradientElement");
108 checkParent("SVGRect", "Object"); 87 checkParent("SVGRect", "Object");
109 checkParent("SVGRectElement", "SVGGeometryElement"); 88 checkParent("SVGRectElement", "SVGGeometryElement");
110 checkParent("SVGSVGElement", "SVGGraphicsElement"); 89 checkParent("SVGSVGElement", "SVGGraphicsElement");
(...skipping 13 matching lines...) Expand all
124 checkParent("SVGTransform", "Object"); 103 checkParent("SVGTransform", "Object");
125 checkParent("SVGTransformList", "Object"); 104 checkParent("SVGTransformList", "Object");
126 checkParent("SVGUseElement", "SVGGraphicsElement"); 105 checkParent("SVGUseElement", "SVGGraphicsElement");
127 checkParent("SVGViewElement", "SVGElement"); 106 checkParent("SVGViewElement", "SVGElement");
128 checkParent("SVGViewSpec", "Object"); 107 checkParent("SVGViewSpec", "Object");
129 checkParent("SVGZoomEvent", "UIEvent"); 108 checkParent("SVGZoomEvent", "UIEvent");
130 checkParent("TimeEvent", "Event"); 109 checkParent("TimeEvent", "Event");
131 </script> 110 </script>
132 </body> 111 </body>
133 </html> 112 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698