mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a384c8a7ea
--HG-- rename : layout/reftests/canvas/text-bidi-ltr-test.html => layout/reftests/canvas/text-bidi-ltr-notref.html
23 lines
545 B
HTML
23 lines
545 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');
|
|
|
|
// Bug 698185 caused the RTL and trailing LTR runs to be lost
|
|
// var str = "hello\u05E9\u05DC\u05D5\u05DDgoodbye";
|
|
var str = "hello";
|
|
|
|
ctx.fillStyle = 'black';
|
|
ctx.font = '10px sans-serif';
|
|
ctx.fillText(str, 128, 32);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|