WebCore/manual-tests/resources/chrome-bidi-text-window.html
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 01:32:07 +0300
changeset 2 303757a437d3
parent 0 4f2f89ce4247
permissions -rw-r--r--
Revision: 201037 Kit: 201039

<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>