Bug 71556

Summary: Font weight BOLD does not work in chrome browser
Product: WebKit Reporter: huzefa <huzefa086>
Component: CSSAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WORKSFORME    
Severity: Critical CC: dstockwell, jchaffraix
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Windows XP   

Description huzefa 2011-11-04 06:00:05 PDT
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
Comment 1 Julien Chaffraix 2011-11-04 12:00:51 PDT
(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).