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

Side by Side Diff: tests/html/svg_3_test.dart

Issue 10917275: Update unittest to new package layout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
« no previous file with comments | « tests/html/svg_2_test.dart ('k') | tests/html/svgelement2_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('SVG3Test'); 1 #library('SVG3Test');
2 #import('../../pkg/unittest/unittest.dart'); 2 #import('../../pkg/unittest/lib/unittest.dart');
3 #import('../../pkg/unittest/html_config.dart'); 3 #import('../../pkg/unittest/lib/html_config.dart');
4 #import('dart:html'); 4 #import('dart:html');
5 5
6 // Test that SVG elements have the operations advertised through all the IDL 6 // Test that SVG elements have the operations advertised through all the IDL
7 // interfaces. This is a 'duck typing' test, and does not explicitly use 'is' 7 // interfaces. This is a 'duck typing' test, and does not explicitly use 'is'
8 // checks on the expected interfaces (that is in SVGTest2). 8 // checks on the expected interfaces (that is in SVGTest2).
9 9
10 main() { 10 main() {
11 11
12 insertTestDiv() { 12 insertTestDiv() {
13 var element = new Element.tag('div'); 13 var element = new Element.tag('div');
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 119
120 testRect('rect_SVGTests', checkSVGTests); 120 testRect('rect_SVGTests', checkSVGTests);
121 testRect('rect_SVGLangSpace', checkSVGLangSpace); 121 testRect('rect_SVGLangSpace', checkSVGLangSpace);
122 testRect('rect_SVGExternalResourcesRequired', 122 testRect('rect_SVGExternalResourcesRequired',
123 checkSVGExternalResourcesRequired); 123 checkSVGExternalResourcesRequired);
124 testRect('rect_SVGStylable', checkSVGStylable); 124 testRect('rect_SVGStylable', checkSVGStylable);
125 testRect('rect_SVGLocatable', checkSVGLocatable); 125 testRect('rect_SVGLocatable', checkSVGLocatable);
126 testRect('rect_SVGTransformable', checkSVGTransformable); 126 testRect('rect_SVGTransformable', checkSVGTransformable);
127 127
128 } 128 }
OLDNEW
« no previous file with comments | « tests/html/svg_2_test.dart ('k') | tests/html/svgelement2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698