Source code
Revision control
Copy as Markdown
Other Tools
<!doctype HTML>
<html>
<meta charset="utf-8">
<head>
<title>HTML5 Canvas Test Reference: The direction attribute in an offscreen canvas</title>
<link rel="author" href="mailto:schenney@chromium.org"/>
<script>
function runTest()
{
var canvas = document.getElementById("canvas1");
var ctx = canvas.getContext("2d");
ctx.font = "25px serif";
ctx.direction = "rtl";
ctx.fillText("ABC!", 60, 50);
}
</script>
</head>
<body onload="runTest()">
<canvas id="canvas1" width="300" height="150">Browser does not support HTML5 Canvas.</canvas>
</body>
</html>