Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / content / canvas / test / test_context.unrecognised.nullsuffix.html
blob522049754dda32df2261561315f468ba7f7f6f6d
1 <!DOCTYPE HTML>
2 <title>Canvas test: context.unrecognised.nullsuffix - bug 401788</title>
3 <!-- Testing: Context name "2d" plus a "\0" suffix is unrecognised -->
4 <script src="/MochiKit/MochiKit.js"></script>
5 <script src="/tests/SimpleTest/SimpleTest.js"></script>
6 <link rel="stylesheet" href="/tests/SimpleTest/test.css">
7 <body>
8 <canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
9 <script>
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;
18 try {
20 ok(canvas.getContext("2d\0") === null, "canvas.getContext(\"2d\\0\") === null");
22 } catch (e) {
23 _thrown_outer = true;
25 todo(!_thrown_outer, 'should not throw exception');
27 SimpleTest.finish();
29 });
30 </script>