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

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

Issue 2485113002: Remove currentView, useCurrentView properties of SVGSVGElement and SVGViewSpec interface (Closed)
Patch Set: rebased Created 4 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 checkParent("SVGTSpanElement", "SVGTextPositioningElement"); 97 checkParent("SVGTSpanElement", "SVGTextPositioningElement");
98 checkParent("SVGTextContentElement", "SVGGraphicsElement"); 98 checkParent("SVGTextContentElement", "SVGGraphicsElement");
99 checkParent("SVGTextElement", "SVGTextPositioningElement"); 99 checkParent("SVGTextElement", "SVGTextPositioningElement");
100 checkParent("SVGTextPathElement", "SVGTextContentElement"); 100 checkParent("SVGTextPathElement", "SVGTextContentElement");
101 checkParent("SVGTextPositioningElement", "SVGTextContentElement"); 101 checkParent("SVGTextPositioningElement", "SVGTextContentElement");
102 checkParent("SVGTitleElement", "SVGElement"); 102 checkParent("SVGTitleElement", "SVGElement");
103 checkParent("SVGTransform", "Object"); 103 checkParent("SVGTransform", "Object");
104 checkParent("SVGTransformList", "Object"); 104 checkParent("SVGTransformList", "Object");
105 checkParent("SVGUseElement", "SVGGraphicsElement"); 105 checkParent("SVGUseElement", "SVGGraphicsElement");
106 checkParent("SVGViewElement", "SVGElement"); 106 checkParent("SVGViewElement", "SVGElement");
107 checkParent("SVGViewSpec", "Object");
108 checkParent("TimeEvent", "Event"); 107 checkParent("TimeEvent", "Event");
109 </script> 108 </script>
110 </body> 109 </body>
111 </html> 110 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698