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

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

Issue 10178014: Copy lib/dom tests that use dart:html to lib/html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . Created 8 years, 7 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/dom/canvas_test.dart ('k') | tests/dom/cross_frame_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
(Empty)
1 #library('CanvasUsingHtmlTest');
2 #import('../../lib/unittest/unittest.dart');
3 #import('../../lib/unittest/html_config.dart');
4 #import('dart:html', prefix: 'html');
5 #import('dart:html');
6
7 // Version of Canvas test that implicitly uses dart:html library via unittests.
8
9 main() {
10 CanvasElement canvas;
11 CanvasRenderingContext2D context;
12
13 canvas = new Element.tag('canvas');
14 canvas.attributes['width'] = 100;
15 canvas.attributes['height'] = 100;
16 document.body.nodes.add(canvas);
17 context = canvas.getContext('2d');
18
19 useHtmlConfiguration();
20 test('FillStyle', () {
21 context.fillStyle = "red";
22 context.fillRect(10, 10, 20, 20);
23
24 // TODO(vsm): Verify the result once we have the ability to read pixels.
25 });
26 test('SetFillColor', () {
27 // With floats.
28 context.setFillColor(10, 10, 10, 10);
29 context.fillRect(10, 10, 20, 20);
30
31 // With rationals.
32 context.setFillColor(10.0, 10.0, 10.0, 10.0);
33 context.fillRect(20, 20, 30, 30);
34
35 // With ints.
36 context.setFillColor(10, 10, 10, 10);
37 context.fillRect(30, 30, 40, 40);
38
39 // TODO(vsm): Verify the result once we have the ability to read pixels.
40 });
41 test('StrokeStyle', () {
42 context.strokeStyle = "blue";
43 context.strokeRect(30, 30, 10, 20);
44
45 // TODO(vsm): Verify the result once we have the ability to read pixels.
46 });
47 test('CreateImageData', () {
48 ImageData image = context.createImageData(canvas.width,
49 canvas.height);
50 Uint8ClampedArray bytes = image.data;
51
52 // FIXME: uncomment when numeric index getters are supported.
53 //var byte = bytes[0];
54
55 Expect.equals(40000, bytes.length);
56 });
57 }
OLDNEW
« no previous file with comments | « tests/dom/canvas_test.dart ('k') | tests/dom/cross_frame_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698