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

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

Issue 257033002: Do not implement EventTarget on SVGElementInstance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Try to fix TestExpectations Created 6 years, 6 months 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 checkParent("SVGAnimationElement", "SVGElement"); 49 checkParent("SVGAnimationElement", "SVGElement");
50 checkParent("SVGCSSRule", "CSSRule"); 50 checkParent("SVGCSSRule", "CSSRule");
51 checkParent("SVGCircleElement", "SVGGeometryElement"); 51 checkParent("SVGCircleElement", "SVGGeometryElement");
52 checkParent("SVGClipPathElement", "SVGDefinitionElement"); 52 checkParent("SVGClipPathElement", "SVGDefinitionElement");
53 checkParent("SVGColorProfileElement", "SVGElement"); 53 checkParent("SVGColorProfileElement", "SVGElement");
54 checkParent("SVGColorProfileRule", "SVGCSSRule"); 54 checkParent("SVGColorProfileRule", "SVGCSSRule");
55 checkParent("SVGCursorElement", "SVGElement"); 55 checkParent("SVGCursorElement", "SVGElement");
56 checkParent("SVGDefsElement", "SVGGraphicsElement"); 56 checkParent("SVGDefsElement", "SVGGraphicsElement");
57 checkParent("SVGDescElement", "SVGElement"); 57 checkParent("SVGDescElement", "SVGElement");
58 checkParent("SVGElement", "Element"); 58 checkParent("SVGElement", "Element");
59 checkParent("SVGElementInstance", "EventTarget");
60 checkParent("SVGEllipseElement", "SVGGeometryElement"); 59 checkParent("SVGEllipseElement", "SVGGeometryElement");
61 checkParent("SVGFontElement", "SVGElement"); 60 checkParent("SVGFontElement", "SVGElement");
62 checkParent("SVGFontFaceElement", "SVGElement"); 61 checkParent("SVGFontFaceElement", "SVGElement");
63 checkParent("SVGFontFaceFormatElement", "SVGElement"); 62 checkParent("SVGFontFaceFormatElement", "SVGElement");
64 checkParent("SVGFontFaceNameElement", "SVGElement"); 63 checkParent("SVGFontFaceNameElement", "SVGElement");
65 checkParent("SVGFontFaceSrcElement", "SVGElement"); 64 checkParent("SVGFontFaceSrcElement", "SVGElement");
66 checkParent("SVGFontFaceUriElement", "SVGElement"); 65 checkParent("SVGFontFaceUriElement", "SVGElement");
67 checkParent("SVGForeignObjectElement", "SVGGraphicsElement"); 66 checkParent("SVGForeignObjectElement", "SVGGraphicsElement");
68 checkParent("SVGGElement", "SVGGraphicsElement"); 67 checkParent("SVGGElement", "SVGGraphicsElement");
69 checkParent("SVGGeometryElement", "SVGGraphicsElement"); 68 checkParent("SVGGeometryElement", "SVGGraphicsElement");
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 checkParent("SVGTransformList", "Object"); 138 checkParent("SVGTransformList", "Object");
140 checkParent("SVGUseElement", "SVGGraphicsElement"); 139 checkParent("SVGUseElement", "SVGGraphicsElement");
141 checkParent("SVGVKernElement", "SVGElement"); 140 checkParent("SVGVKernElement", "SVGElement");
142 checkParent("SVGViewElement", "SVGElement"); 141 checkParent("SVGViewElement", "SVGElement");
143 checkParent("SVGViewSpec", "Object"); 142 checkParent("SVGViewSpec", "Object");
144 checkParent("SVGZoomEvent", "UIEvent"); 143 checkParent("SVGZoomEvent", "UIEvent");
145 checkParent("TimeEvent", "Event"); 144 checkParent("TimeEvent", "Event");
146 </script> 145 </script>
147 </body> 146 </body>
148 </html> 147 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698