Revision 2839cd992b9bc44e54b2f1b229ead4c0d6b6712f authored by Aryeh Gregor on 12 April 2016, 13:36:58 UTC, committed by Aryeh Gregor on 01 September 2016, 14:58:51 UTC
Based on Gecko's dom/base/test/test_classList.html.  I generalized it to
test all DOMTokenList attributes currently defined in the spec, and
removed testing of mutation events and XUL.
1 parent 0c3a2f1
Raw File
2d.imageData.create2.type.html
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>Canvas test: 2d.imageData.create2.type</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>
<link rel="stylesheet" href="/common/canvas-tests.css">
<body class="show_output">

<h1>2d.imageData.create2.type</h1>
<p class="desc">createImageData(sw, sh) returns an ImageData object containing a Uint8ClampedArray object</p>


<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>
var t = async_test("createImageData(sw, sh) returns an ImageData object containing a Uint8ClampedArray object");
_addTest(function(canvas, ctx) {

_assertDifferent(window.ImageData, undefined, "window.ImageData", "undefined");
_assertDifferent(window.Uint8ClampedArray, undefined, "window.Uint8ClampedArray", "undefined");
window.ImageData.prototype.thisImplementsImageData = true;
window.Uint8ClampedArray.prototype.thisImplementsUint8ClampedArray = true;
var imgdata = ctx.createImageData(1, 1);
_assert(imgdata.thisImplementsImageData, "imgdata.thisImplementsImageData");
_assert(imgdata.data.thisImplementsUint8ClampedArray, "imgdata.data.thisImplementsUint8ClampedArray");


});
</script>

back to top