2 <title>Canvas test: size.attributes.style
</title>
3 <!-- Testing: Canvas size is independent of CSS resizing -->
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=
"50" height=
"30" style=
"width: 100px; height: 50px"><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 ok(canvas
.width
== 50, "canvas.width == 50");
18 ok(canvas
.height
== 30, "canvas.height == 30");