blob: adb49a15e8873c19cf82568b377c80565e90d5fe [file] [log] [blame]
<!DOCTYPE HTML>
<body>
<script src="resources/shadow-offset.js"></script>
<script>
setter = function(ctx, offsetX, offsetY) {
ctx.shadowOffsetX = offsetX;
ctx.shadowOffsetY = offsetY;
ctx.shadowBlur = 0;
ctx.shadowColor = "green";
}
onload = test(setter);
</script>
</body>