Status: Unconfirmed
Owner: ----
Labels: Type-Bug Pri-2 Area-Undefined
New issue 133697 by efanzh: The Font SimSun doesn't rendering correctly.
http://code.google.com/p/chromium/issues/detail?id=133697
Chrome Version : 19.0.1084.56
URLs (if applicable) :
Other browsers tested:
Add OK or FAIL after other browsers where you have tested this issue:
Safari 5:
Firefox 4.x: OK
IE 7/8/9: OK
What steps will reproduce the problem?
1. Open some website using 13px SimSun font;
2.
3.
What is the expected result?
The text rendering correctly.
What happens instead?
The text doesn't rendering correctly.
Please provide any additional information below. Attach a screenshot if
possible.
For now, I've found “。”, “《” and “》” doesn't rendering correctly at 12px–
17px, see the attachment for the text rendering results of Firefox, IE and
Chrome.
The source code of the test page:
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<style type="text/css">
body
{
font-family: Verdana, sans-serif;
font-size: 12px;
}
</style>
<script type="text/javascript">
window.onload = function ()
{
var s = "";
for (var i = 12; i <= 17; i++)
{
s += "<div>" + i + "px:</div>";
s += "<div style=\"font-family: SimSun; font-size: " +
i + "px;\">。《》</div>";
}
document.getElementById("main").innerHTML = s;
};
</script>
</head>
<body>
<div id="main">
</div>
</body>
</html>
Attachments:
Chrome-Font.png 15.4 KB