summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/html/font-weight-bold-for-b-and-strong.html
blob: 8c55a269a3433af7557b1ad8f1b2255157d9520a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<html>
<body>
<p style="font-weight: 100"><b>Should be bold per HTML5.</b></p>
<p style="font-weight: 100"><b><b>Should be equally bold. </b></b></p>
<p style="font-weight: 100"><strong>Should be bold per HTML5.</strong></p>
<p style="font-weight: 100"><strong><strong>Should be equally bold.</strong></strong></p>
<p id="description">The HTML5 spec says that b and strong should render as font-weight: bold, 
not font-weight: bolder. The text above should all render with the same 
boldness.</p>
</body>
</html>