summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/text/zero-width-characters-complex-script.html
blob: 5338e3ffc72626381cf3ef442f865acc98f08ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<head>
<script>

function testChar(ch)
{
    // Strings a and b selected here do not have any 'interaction' between them.
    var a = "\u0915\u093E"
    var b = "\u0916";
    var span = document.getElementById("characters");
    span.firstChild.data = a + b;
    var abWidth = span.offsetWidth;
    span.firstChild.data = a;
    var aWidth = span.offsetWidth;
    span.firstChild.data = a + String.fromCharCode(ch) + b;
    var abWithChWidth = span.offsetWidth;

    if (abWithChWidth > abWidth)
        return 1;
    if (abWidth > aWidth)
        return 0;
    return 1;
}

function test()
{
    if (window.layoutTestController)
        layoutTestController.dumpAsText();
    var failedCount = 0;
    for (var i = 1; i < 32; ++i)
        if (i != 9 && i != 10 && i != 13)
            failedCount += testChar(i);

    for (var i = 0x7F; i < 0xA0; ++i)
        failedCount += testChar(i);
    failedCount += testChar(0xAD);
    // ZWJ (U+200C) and ZWNJ (U+200D) are excluded because they
    // can affect the rendering in complex script text.
    failedCount += testChar(0x200B);
    failedCount += testChar(0x200E);
    failedCount += testChar(0x200F);
    failedCount += testChar(0x202A);
    failedCount += testChar(0x202B);
    failedCount += testChar(0x202C);
    failedCount += testChar(0x202D);
    failedCount += testChar(0x202E);
    failedCount += testChar(0xFEFF);
    failedCount += testChar(0xFFFC);

    var testArea = document.getElementById("testArea");
    testArea.parentNode.removeChild(testArea);

    if (failedCount > 0) 
        result = "FAIL: " + failedCount + " characters had non-zero width" +
                 " or failed to get measured.";
    else
        result = "PASS: All characters had zero-width.";
    document.getElementById("result").firstChild.data = result;
}
</script>
</head>
<body onload="test()">
<p>This test checks various characters that should always be zero width to ensure that they are when enclosed by complex script characters.
The WebKit text system ensures this in a way that's independent of the fonts installed on the system.</p>
<p id="result">FAIL: Script did not run to completion.</p>
<p id="testArea"><span id="characters">&#x0915;&#x093E;&#x0916;</span></p>
</body>