mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
21 lines
457 B
HTML
21 lines
457 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test to ensure bidi is resolved correctly</title>
|
|
</head>
|
|
<body>
|
|
<canvas id="c" width="256" height="64" style="direction:ltr"></canvas>
|
|
<script type="text/javascript">
|
|
var canvas = document.getElementById('c');
|
|
var ctx = canvas.getContext('2d');
|
|
|
|
var str = "hello\u05E9\u05DC\u05D5\u05DDgoodbye";
|
|
|
|
ctx.fillStyle = 'black';
|
|
ctx.font = '10px sans-serif';
|
|
ctx.fillText(str, 128, 32);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|