mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
270 lines
19 KiB
HTML
270 lines
19 KiB
HTML
<!DOCTYPE HTML>
|
|
<title>Canvas test: 2d.imageData.put.nonfinite</title>
|
|
<!-- Testing: putImageData() throws NOT_SUPPORTED_ERR if arguments are not finite -->
|
|
<script src="/MochiKit/packed.js"></script>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
|
|
<body>
|
|
<canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
|
|
<script>
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
MochiKit.DOM.addLoadEvent(function () {
|
|
|
|
var canvas = document.getElementById('c');
|
|
var ctx = canvas.getContext('2d');
|
|
|
|
var imgdata = ctx.getImageData(0, 0, 10, 10);
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, -Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, NaN, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, -Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, NaN);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, -Infinity, 10, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, NaN, 10, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, -Infinity, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, NaN, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, -Infinity, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, NaN, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, -Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, NaN, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, -Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, NaN, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, 10, -Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, 10, NaN);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, Infinity, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, Infinity, 10, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, Infinity, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, Infinity, 10, 10, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, 10, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, Infinity, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, Infinity, 10, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, Infinity, 10, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, 10, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, Infinity, 10, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, Infinity, Infinity, 10);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, Infinity, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, Infinity, 10, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
var _thrown = undefined; try {
|
|
ctx.putImageData(imgdata, 10, 10, 10, 10, Infinity, Infinity);
|
|
} catch (e) { _thrown = e }; todo(_thrown && _thrown.code == DOMException.NOT_SUPPORTED_ERR, "should throw NOT_SUPPORTED_ERR");
|
|
|
|
SimpleTest.finish();
|
|
|
|
});
|
|
</script>
|
|
|