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

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

Issue 272523002: Remove SVGElementInstance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address esprehns nits 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 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("SVGElement"); 9 shouldBeDefined("SVGElement");
10 shouldBeDefined("SVGAnimatedBoolean"); 10 shouldBeDefined("SVGAnimatedBoolean");
(...skipping 21 matching lines...) Expand all
32 shouldBeDefined("SVGURIReference"); 32 shouldBeDefined("SVGURIReference");
33 shouldBeDefined("SVGCSSRule"); 33 shouldBeDefined("SVGCSSRule");
34 shouldBeDefined("SVGSVGElement"); 34 shouldBeDefined("SVGSVGElement");
35 shouldBeDefined("SVGGElement"); 35 shouldBeDefined("SVGGElement");
36 shouldBeDefined("SVGDefsElement"); 36 shouldBeDefined("SVGDefsElement");
37 shouldBeDefined("SVGDescElement"); 37 shouldBeDefined("SVGDescElement");
38 shouldBeDefined("SVGDiscardElement"); 38 shouldBeDefined("SVGDiscardElement");
39 shouldBeDefined("SVGTitleElement"); 39 shouldBeDefined("SVGTitleElement");
40 shouldBeDefined("SVGSymbolElement"); 40 shouldBeDefined("SVGSymbolElement");
41 shouldBeDefined("SVGUseElement"); 41 shouldBeDefined("SVGUseElement");
42 shouldBeDefined("SVGElementInstance");
43 shouldBeDefined("SVGImageElement"); 42 shouldBeDefined("SVGImageElement");
44 shouldBeDefined("SVGSwitchElement"); 43 shouldBeDefined("SVGSwitchElement");
45 shouldBeDefined("SVGStyleElement"); 44 shouldBeDefined("SVGStyleElement");
46 shouldBeDefined("SVGPoint"); 45 shouldBeDefined("SVGPoint");
47 shouldBeDefined("SVGPointList"); 46 shouldBeDefined("SVGPointList");
48 shouldBeDefined("SVGMatrix"); 47 shouldBeDefined("SVGMatrix");
49 shouldBeDefined("SVGTransform"); 48 shouldBeDefined("SVGTransform");
50 shouldBeDefined("SVGTransformList"); 49 shouldBeDefined("SVGTransformList");
51 shouldBeDefined("SVGAnimatedTransformList"); 50 shouldBeDefined("SVGAnimatedTransformList");
52 shouldBeDefined("SVGPreserveAspectRatio"); 51 shouldBeDefined("SVGPreserveAspectRatio");
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 shouldBeDefined("SVGFontFaceElement"); 147 shouldBeDefined("SVGFontFaceElement");
149 shouldBeDefined("SVGFontFaceSrcElement"); 148 shouldBeDefined("SVGFontFaceSrcElement");
150 shouldBeDefined("SVGFontFaceUriElement"); 149 shouldBeDefined("SVGFontFaceUriElement");
151 shouldBeDefined("SVGFontFaceFormatElement"); 150 shouldBeDefined("SVGFontFaceFormatElement");
152 shouldBeDefined("SVGFontFaceNameElement"); 151 shouldBeDefined("SVGFontFaceNameElement");
153 shouldBeDefined("SVGDefinitionSrcElement"); 152 shouldBeDefined("SVGDefinitionSrcElement");
154 shouldBeDefined("SVGMetadataElement"); 153 shouldBeDefined("SVGMetadataElement");
155 shouldBeDefined("SVGForeignObjectElement"); 154 shouldBeDefined("SVGForeignObjectElement");
156 155
157 var successfullyParsed = true; 156 var successfullyParsed = true;
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/global-constructors-expected.txt ('k') | LayoutTests/svg/custom/use-instanceRoot-modifications.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698