Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / content / canvas / test / test_2d.imageData.object.properties.html
blob72590f89adfec23749ddf06838c0f76b342a93d2
1 <!DOCTYPE HTML>
2 <title>Canvas test: 2d.imageData.object.properties</title>
3 <!-- Testing: ImageData objects have the right properties -->
4 <script src="/MochiKit/MochiKit.js"></script>
5 <script src="/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel="stylesheet" href="/tests/SimpleTest/test.css">
7 <body>
8 <canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
9 <script>
11 SimpleTest.waitForExplicitFinish();
12 MochiKit.DOM.addLoadEvent(function () {
14 var canvas = document.getElementById('c');
15 var ctx = canvas.getContext('2d');
17 var imgdata = ctx.getImageData(0, 0, 10, 10);
18 ok(typeof(imgdata.width) == 'number', "typeof(imgdata.width) == 'number'");
19 ok(typeof(imgdata.height) == 'number', "typeof(imgdata.height) == 'number'");
20 ok(typeof(imgdata.data) == 'object', "typeof(imgdata.data) == 'object'");
22 SimpleTest.finish();
24 });
25 </script>