2 <title>Canvas test: toDataURL.lowercase - bug
401795</title>
3 <!-- Testing: toDataURL type is case-sensitive -->
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_outer
= false;
20 var data
= canvas
.toDataURL('ImAgE/PnG');
21 ok(data
=~ /^data:image\/png[;,]/, "data =~ /^data:image\\/png[;,]/");
26 todo(!_thrown_outer
, 'should not throw exception');