blob: 56581a4e7ff08be40f419ed657e25bf1e8c1bb15 [file] [log] [blame]
<!DOCTYPE html>
<title>Canvas test: 2d.imageData.object.properties</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<body>
<p id="passtext">Pass</p>
<p id="failtext">Fail</p>
<p class="output">These images should be identical:</p>
<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
var imgdata = ctx.getImageData(0, 0, 10, 10);
_assertEqual(typeof(imgdata.width), 'number', "typeof(imgdata.width)", "'number'");
_assertEqual(typeof(imgdata.height), 'number', "typeof(imgdata.height)", "'number'");
_assertEqual(typeof(imgdata.data), 'object', "typeof(imgdata.data)", "'object'");
});
</script>