mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
955 B
HTML
29 lines
955 B
HTML
<!DOCTYPE HTML>
|
|
<title>Canvas test: size.attributes.reflect.2</title>
|
|
<!-- Testing: Setting content attributes updates DOM and content attributes -->
|
|
<script src="/MochiKit/MochiKit.js"></script>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" href="/tests/SimpleTest/test.css">
|
|
<body>
|
|
<canvas id="c" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas>
|
|
<script>
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
MochiKit.DOM.addLoadEvent(function () {
|
|
|
|
var canvas = document.getElementById('c');
|
|
var ctx = canvas.getContext('2d');
|
|
|
|
canvas.setAttribute('width', '120');
|
|
canvas.setAttribute('height', '60');
|
|
ok(canvas.getAttribute('width') == '120', "canvas.getAttribute('width') == '120'");
|
|
ok(canvas.getAttribute('height') == '60', "canvas.getAttribute('height') == '60'");
|
|
ok(canvas.width == 120, "canvas.width == 120");
|
|
ok(canvas.height == 60, "canvas.height == 60");
|
|
|
|
SimpleTest.finish();
|
|
|
|
});
|
|
</script>
|
|
|