Bug 71556
Summary: | Font weight BOLD does not work in chrome browser | ||
---|---|---|---|
Product: | WebKit | Reporter: | huzefa <huzefa086> |
Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED WORKSFORME | ||
Severity: | Critical | CC: | dstockwell, jchaffraix |
Priority: | P2 | ||
Version: | 528+ (Nightly build) | ||
Hardware: | PC | ||
OS: | Windows XP |
huzefa
Hello
This CSS property does not work in chrome :
font-weight:bold;
The font looks normal only,
I wanted to know whether the chrome supports this property or not.
Thanks
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Julien Chaffraix
(In reply to comment #0)
> I wanted to know whether the chrome supports this property or not.
WebKit does support the property (which means Chromium should too). This works for me in Chromium dev channel:
<!DOCTYPE html>
<html>
<head>
<style>
.bold { font-weight: bold; }
</style>
</head>
<body>
Normal
<p class="bold">Bold</p>
</body>
</html>
If you have an example where this does not work, please attach it here. Also make sure you try the latest Chromium (dev or canary).