2 <title>Canvas test:
2d.gradient.radial.negative
</title>
3 <!-- Testing: createRadialGradient() throws INDEX_SIZE_ERR if either radius is negative -->
4 <script src=
"/MochiKit/MochiKit.js"></script>
5 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel=
"stylesheet" href=
"/tests/SimpleTest/test.css">
8 <canvas id=
"c" width=
"100" height=
"50"><p class=
"fallback">FAIL (fallback content)
</p></canvas>
11 SimpleTest
.waitForExplicitFinish();
12 MochiKit
.DOM
.addLoadEvent(function () {
14 var canvas
= document
.getElementById('c');
15 var ctx
= canvas
.getContext('2d');
17 var _thrown
= undefined; try {
18 ctx
.createRadialGradient(0, 0, -0.1, 0, 0, 1);
19 } catch (e
) { _thrown
= e
}; todo(_thrown
&& _thrown
.code
== DOMException
.INDEX_SIZE_ERR
, "should throw INDEX_SIZE_ERR");
20 var _thrown
= undefined; try {
21 ctx
.createRadialGradient(0, 0, 1, 0, 0, -0.1);
22 } catch (e
) { _thrown
= e
}; todo(_thrown
&& _thrown
.code
== DOMException
.INDEX_SIZE_ERR
, "should throw INDEX_SIZE_ERR");
23 var _thrown
= undefined; try {
24 ctx
.createRadialGradient(0, 0, -0.1, 0, 0, -0.1);
25 } catch (e
) { _thrown
= e
}; todo(_thrown
&& _thrown
.code
== DOMException
.INDEX_SIZE_ERR
, "should throw INDEX_SIZE_ERR");