| OLD | NEW |
| (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 } | |
| OLD | NEW |