2 <title>Canvas test:
2d.gradient.object.invalidcolour
</title>
3 <script src=
"/MochiKit/MochiKit.js"></script>
4 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
5 <link rel=
"stylesheet" href=
"/tests/SimpleTest/test.css">
7 <canvas id=
"c" width=
"100" height=
"50"><p class=
"fallback">FAIL (fallback content)
</p></canvas>
10 SimpleTest
.waitForExplicitFinish();
11 MochiKit
.DOM
.addLoadEvent(function () {
13 var canvas
= document
.getElementById('c');
14 var ctx
= canvas
.getContext('2d');
16 var g
= ctx
.createLinearGradient(0, 0, 100, 0);
17 var _thrown
= undefined; try {
18 g
.addColorStop(0, "");
19 } catch (e
) { _thrown
= e
}; ok(_thrown
&& _thrown
.code
== DOMException
.SYNTAX_ERR
, "should throw SYNTAX_ERR");
20 var _thrown
= undefined; try {
21 g
.addColorStop(0, 'undefined');
22 } catch (e
) { _thrown
= e
}; ok(_thrown
&& _thrown
.code
== DOMException
.SYNTAX_ERR
, "should throw SYNTAX_ERR");