blob: 674f88de7fdaa03116f5ba99fbd0fc37c7ecb44f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<style>
@font-face {
font-family: ivsfont;
src: url(resources/gw432047.ttf);
}
.ivs {
font-family: ivsfont;
}
</style>
<p>
This page ensures that WebKit can render unicode variation selector correctly. On platforms which support UVSes, the glyphs of U+845B should be different. On platforms which don't support UVSes, they should be identical. In addition, any glyphs (including the last resort glyph) should not appear after the U+845B on all platforms.
</p>
<div>
Glyph for code point U+845B without UVS:
<span style="font-family: ivsfont;">葛</span>
</div>
<div>
Glyph for code point U+845B with UVS:
<span style="font-family: ivsfont;" id='ivs-holder'>葛󠄀</span>
</div>
|