| <!doctype html> |
| <html> |
| <body> |
| <p style="font-weight: 100"><b>Should be normal.</b></p> |
| <p style="font-weight: 100"><b><b>Should be bolder per HTML5.</b></b></p> |
| <p style="font-weight: 100"><strong>Should be normal.</strong></p> |
| <p style="font-weight: 100"><strong><strong>Should be bolder per HTML5.</strong></strong></p> |
| <p id="description">The HTML5 spec says that b and strong should render as font-weight: bolder, |
| not font-weight: bold. The text above should render with bolder font weight.</p> |
| </body> |
| </html> |