| <!DOCTYPE html> |
| <title>Canvas test: 2d.imageData.create1.basic</title> |
| <script src="../tests.js"></script> |
| <link rel="stylesheet" href="../tests.css"> |
| <link rel="prev" href="2d.imageData.create2.basic.html" title="2d.imageData.create2.basic"> |
| <link rel="next" href="2d.imageData.create2.type.html" title="2d.imageData.create2.type"> |
| <body class="show_output"> |
| <p> |
| <a href="2d.imageData.create2.basic.html" accesskey="p" title="[p] 2d.imageData.create2.basic"><</a> |
| <a href="index.html">[index]</a> |
| <a href="2d.imageData.create2.type.html" accesskey="n" title="[n] 2d.imageData.create2.type">></a> |
| <h1><a href="index.2d.html">2d</a>.<a href="index.2d.imageData.html">imageData</a>.<a href="index.2d.imageData.create1.html">create1</a>.basic</h1> |
| <p class="desc">createImageData(imgdata) exists and returns something</p> |
| <div class="refs">References: |
| <ul> |
| <li><a href="spec.html#testrefs.2d.imageData.create1.object">2d.imageData.create1.object</a> |
| <li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433004">Bugzilla</a> |
| </ul> |
| </div> |
| |
| <p class="output">Actual output:</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) { |
| |
| _assertDifferent(ctx.createImageData(ctx.createImageData(1, 1)), null, "ctx.createImageData(ctx.createImageData(1, 1))", "null"); |
| |
| |
| }); |
| </script> |
| |