Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / content / canvas / test / test_2d.shadow.attributes.shadowColor.2.html
blobe90db321f84aaa2d4962b2ac07eb352fb7639dcf
1 <!DOCTYPE HTML>
2 <title>Canvas test: 2d.shadow.attributes.shadowColor.2</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">
6 <body>
7 <canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
8 <script>
10 SimpleTest.waitForExplicitFinish();
11 MochiKit.DOM.addLoadEvent(function () {
13 var canvas = document.getElementById('c');
14 var ctx = canvas.getContext('2d');
16 ctx.shadowColor = '#00ff00';
17 ctx.shadowColor = 'bogus';
18 ok(ctx.shadowColor === '#00ff00', "ctx.shadowColor === '#00ff00'");
19 ctx.shadowColor = ctx;
20 ok(ctx.shadowColor === '#00ff00', "ctx.shadowColor === '#00ff00'");
21 ctx.shadowColor = undefined;
22 ok(ctx.shadowColor === '#00ff00', "ctx.shadowColor === '#00ff00'");
24 SimpleTest.finish();
26 });
27 </script>