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

Side by Side Diff: LayoutTests/svg/custom/script-tests/global-constructors.js

Issue 16959011: Get rid of multiple inheritence for SVGViewElement interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 description("Test to make sure we expose all the global constructor objects requ ested by http://www.w3.org/TR/SVG11/ecmascript-binding.html"); 1 description("Test to make sure we expose all the global constructor objects requ ested by http://www.w3.org/TR/SVG11/ecmascript-binding.html");
2 2
3 function shouldBeDefined(a) 3 function shouldBeDefined(a)
4 { 4 {
5 var constructorString = "'function " + a + "() { [native code] }'"; 5 var constructorString = "'function " + a + "() { [native code] }'";
6 shouldBe("" + a + ".toString()", constructorString); 6 shouldBe("" + a + ".toString()", constructorString);
7 } 7 }
8 8
9 shouldBeDefined("SVGException"); 9 shouldBeDefined("SVGException");
10 shouldBeDefined("SVGElement"); 10 shouldBeDefined("SVGElement");
(...skipping 14 matching lines...) Expand all
25 shouldBeDefined("SVGAnimatedAngle"); 25 shouldBeDefined("SVGAnimatedAngle");
26 shouldBeDefined("SVGColor"); 26 shouldBeDefined("SVGColor");
27 shouldBeDefined("SVGICCColor"); 27 shouldBeDefined("SVGICCColor");
28 shouldBeDefined("SVGRect"); 28 shouldBeDefined("SVGRect");
29 shouldBeDefined("SVGAnimatedRect"); 29 shouldBeDefined("SVGAnimatedRect");
30 shouldBeDefined("SVGStylable"); 30 shouldBeDefined("SVGStylable");
31 shouldBeDefined("SVGLocatable"); 31 shouldBeDefined("SVGLocatable");
32 shouldBeDefined("SVGTransformable"); 32 shouldBeDefined("SVGTransformable");
33 shouldBeDefined("SVGTests"); 33 shouldBeDefined("SVGTests");
34 shouldBeDefined("SVGLangSpace"); 34 shouldBeDefined("SVGLangSpace");
35 shouldBeDefined("SVGExternalResourcesRequired");
36 shouldBeDefined("SVGFitToViewBox");
37 shouldBeDefined("SVGZoomAndPan");
38 shouldBeDefined("SVGViewSpec"); 35 shouldBeDefined("SVGViewSpec");
39 shouldBeDefined("SVGURIReference"); 36 shouldBeDefined("SVGURIReference");
40 shouldBeDefined("SVGCSSRule"); 37 shouldBeDefined("SVGCSSRule");
41 shouldBeDefined("SVGDocument"); 38 shouldBeDefined("SVGDocument");
42 shouldBeDefined("SVGSVGElement"); 39 shouldBeDefined("SVGSVGElement");
43 shouldBeDefined("SVGGElement"); 40 shouldBeDefined("SVGGElement");
44 shouldBeDefined("SVGDefsElement"); 41 shouldBeDefined("SVGDefsElement");
45 shouldBeDefined("SVGDescElement"); 42 shouldBeDefined("SVGDescElement");
46 shouldBeDefined("SVGTitleElement"); 43 shouldBeDefined("SVGTitleElement");
47 shouldBeDefined("SVGSymbolElement"); 44 shouldBeDefined("SVGSymbolElement");
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 shouldBeDefined("SVGFontFaceElement"); 155 shouldBeDefined("SVGFontFaceElement");
159 shouldBeDefined("SVGFontFaceSrcElement"); 156 shouldBeDefined("SVGFontFaceSrcElement");
160 shouldBeDefined("SVGFontFaceUriElement"); 157 shouldBeDefined("SVGFontFaceUriElement");
161 shouldBeDefined("SVGFontFaceFormatElement"); 158 shouldBeDefined("SVGFontFaceFormatElement");
162 shouldBeDefined("SVGFontFaceNameElement"); 159 shouldBeDefined("SVGFontFaceNameElement");
163 shouldBeDefined("SVGDefinitionSrcElement"); 160 shouldBeDefined("SVGDefinitionSrcElement");
164 shouldBeDefined("SVGMetadataElement"); 161 shouldBeDefined("SVGMetadataElement");
165 shouldBeDefined("SVGForeignObjectElement"); 162 shouldBeDefined("SVGForeignObjectElement");
166 163
167 var successfullyParsed = true; 164 var successfullyParsed = true;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698