mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
732 B
HTML
27 lines
732 B
HTML
<!DOCTYPE HTML>
|
|
<title>Canvas test: 2d.gradient.object.compare</title>
|
|
<script src="/MochiKit/packed.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');
|
|
|
|
var g1 = ctx.createLinearGradient(0, 0, 100, 0);
|
|
var g2 = ctx.createLinearGradient(0, 0, 100, 0);
|
|
ok(g1 !== g2, "g1 !== g2");
|
|
ctx.fillStyle = g1;
|
|
ok(ctx.fillStyle === g1, "ctx.fillStyle === g1");
|
|
|
|
SimpleTest.finish();
|
|
|
|
});
|
|
</script>
|
|
|