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

Side by Side Diff: tests/dom/canvas_using_html_test.dart

Issue 10222026: Migrate dom tests to dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase & address comments. Created 8 years, 8 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 #library('CanvasUsingHtmlTest'); 1 #library('CanvasUsingHtmlTest');
2 #import('../../lib/unittest/unittest.dart'); 2 #import('../../lib/unittest/unittest.dart');
3 #import('../../lib/unittest/dom_config.dart'); 3 #import('../../lib/unittest/html_config.dart');
4 #import('dart:html', prefix: 'html'); 4 #import('dart:html', prefix: 'html');
5 #import('dart:dom'); 5 #import('dart:html');
6 6
7 // Version of Canvas test that implicitly uses dart:html library via unittests. 7 // Version of Canvas test that implicitly uses dart:html library via unittests.
8 8
9 main() { 9 main() {
10 HTMLCanvasElement canvas; 10 CanvasElement canvas;
11 CanvasRenderingContext2D context; 11 CanvasRenderingContext2D context;
12 12
13 canvas = document.createElement('canvas'); 13 canvas = new Element.tag('canvas');
14 canvas.setAttribute('width', '100'); 14 canvas.attributes['width'] = '100';
Anton Muhin 2012/04/27 12:06:34 ditto
15 canvas.setAttribute('height', '100'); 15 canvas.attributes['height'] = '100';
16 document.body.appendChild(canvas); 16 document.body.nodes.add(canvas);
17 context = canvas.getContext('2d'); 17 context = canvas.getContext('2d');
18 18
19 useDomConfiguration(); 19 useHtmlConfiguration();
20 test('FillStyle', () { 20 test('FillStyle', () {
21 context.fillStyle = "red"; 21 context.fillStyle = "red";
22 context.fillRect(10, 10, 20, 20); 22 context.fillRect(10, 10, 20, 20);
23 23
24 // TODO(vsm): Verify the result once we have the ability to read pixels. 24 // TODO(vsm): Verify the result once we have the ability to read pixels.
25 }); 25 });
26 test('SetFillColor', () { 26 test('SetFillColor', () {
27 // With floats. 27 // With floats.
28 context.setFillColor(10, 10, 10, 10); 28 context.setFillColor(10, 10, 10, 10);
29 context.fillRect(10, 10, 20, 20); 29 context.fillRect(10, 10, 20, 20);
(...skipping 18 matching lines...) Expand all
48 ImageData image = context.createImageData(canvas.width, 48 ImageData image = context.createImageData(canvas.width,
49 canvas.height); 49 canvas.height);
50 Uint8ClampedArray bytes = image.data; 50 Uint8ClampedArray bytes = image.data;
51 51
52 // FIXME: uncomment when numeric index getters are supported. 52 // FIXME: uncomment when numeric index getters are supported.
53 //var byte = bytes[0]; 53 //var byte = bytes[0];
54 54
55 Expect.equals(40000, bytes.length); 55 Expect.equals(40000, bytes.length);
56 }); 56 });
57 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698