summaryrefslogtreecommitdiff
path: root/layout/forms/test/test_issue1970_manual.html
blob: 223c6e845d86ca2bf269faa20e6e9d53217c51d8 (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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
.fontA {
    font-family: "Noto Sans";
}
.fontB {
    font-family: "Noto Sans CJK TC";
}
.fontC {
    font-family: "WenQuanYi Zen Hei";
}
</style>
</head>
<body>
<p>No clipping of the font glyphs should occur.</p>
<select>
    <option>Latin Text jpg</option>
</select>
<select>
    <option>漢字 jpg</option>
</select>
<select class="fontA">
    <option>漢字 jpg</option>
</select>
<select class="fontB">
    <option>漢字 jpg</option>
</select>
<select class="fontC">
    <option>漢字 jpg</option>
</select>
</body>
</html>