WebCore/manual-tests/resources/chrome-bidi-text-window.html
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/resources/chrome-bidi-text-window.html	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,61 @@
+<head>
+    <meta name="content-type" content="text/html; charset=UTF-8">
+    <style>
+        body { margin-top: 0; }
+        select { display: block; font-size: 13px; }
+        div#reference { font: 13px 'Lucida Grande'; text-align: center; height: 24px; }
+    </style>
+    <script>
+        function setTitle(text)
+        {
+            document.title = text;
+            document.getElementById("reference").innerHTML = text;
+        }
+    </script>
+</head>
+<body>
+<div id="reference"></div>
+<p>
+    This tests drawing bidirectional text in Windows Safari chrome.
+</p>
+<p>
+    Select each item from the list and verify that the window title is
+    rendered exactly like the selected item.
+    Pay attention to the ordering of
+    the characters, the direction of parentheses, diacritics and combining marks,
+    and shaping of Arabic letters. You can ignore small differences in the overall width
+    of the text.
+    For your convenience, the
+    text to match will be displayed at the top of the window.
+</p>
+<select onchange="setTitle(item(selectedIndex).innerText)" size="9">
+    <option>
+        First שניה (03) רביעית fifth
+    </option>
+    <option>
+        &#x202b;First שניה (03) רביעית fifth&#x202c;
+    </option>
+    <option>
+        &#x202d;First שניה (03) רביעית fifth&#x202c;
+    </option>
+    <option>
+        &#x202e;First שניה (03) רביעית fifth&#x202c;
+    </option>
+    <option>
+    משהו עם נִקּוּד
+    </option>
+    <option>
+        اللغة العربية
+    </option>
+    <option>
+        Et volia&#x0300: ATSUI!
+    </option>
+    <option>
+        Directional &#x202e;overrides&#x202c; are confusing.
+    </option>
+    <option>
+        She said &ldquo;&#x202b;יש TNT במזוודה!&#x202c;&rdquo; and ran off
+    </option>
+</select>
+</body>
+</html>