Bug 71556 - Font weight BOLD does not work in chrome browser
Summary: Font weight BOLD does not work in chrome browser
Status: RESOLVED WORKSFORME
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Windows XP
: P2 Critical
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-11-04 06:00 PDT by huzefa
Modified: 2012-06-20 21:36 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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).