summaryrefslogtreecommitdiffstats
path: root/layout/reftests/canvas/text-bidi-ltr-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/canvas/text-bidi-ltr-ref.html')
-rw-r--r--layout/reftests/canvas/text-bidi-ltr-ref.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/canvas/text-bidi-ltr-ref.html b/layout/reftests/canvas/text-bidi-ltr-ref.html
new file mode 100644
index 0000000000..524be1edd4
--- /dev/null
+++ b/layout/reftests/canvas/text-bidi-ltr-ref.html
@@ -0,0 +1,20 @@
+<!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\u202D\u05DD\u05D5\u05DC\u05E9\u202Cgoodbye";
+
+ ctx.fillStyle = 'black';
+ ctx.font = '10px sans-serif';
+ ctx.fillText(str, 128, 32);
+
+</script>
+</body>
+</html>