Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf-8">
<title>HTML5 Canvas Test: Direction inherit in a transferred offscreen</title>
<link rel="match" href="canvas.2d.offscreen.direction-ref.html" />
<link rel="author" href="mailto:schenney@chromium.org"/>
<meta name="assert" content="An offscreen transferred from that canvas inherits the canvas direction."/>
<script src="/common/reftest-wait.js"></script>
<script type="text/javascript">
function runTest() {
var canvas = document.getElementById("canvas1");
var ctx = canvas.transferControlToOffscreen().getContext("2d");
ctx.font = "25px serif";
ctx.fillText("ABC!", 60, 50);
requestAnimationFrame(() => requestAnimationFrame(() => takeScreenshot()));
}
</script>
<body onload="runTest()">
<canvas dir="rtl" id="canvas1" width="300" height="150">
Browser does not support HTML5 Canvas.
</canvas>
</body>
</html>