| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8" /> |
| <title>SystemFont-Expected</title> |
| <style type="text/css"> |
| p { font-family: 'Liberation Sans' } |
| </style> |
| </head> |
| <body> |
| <p>System font</p> |
| <p><i>Italic system font</i></p> |
| <p><b>Bold system font</b></p> |
| <p><i><b>Bold italic system font</b></i></p> |
| |
| <p>System font</p> |
| <p><i>Italic system font</i></p> |
| <p><b>Bold system font</b></p> |
| <p><i><b>Bold italic system font</b></i></p> |
| |
| <p style="font-size: 24px">System font</p> |
| <p style="font-size: 12pt"><i>Italic system font</i></p> |
| <p style="font-size: small"><b>Bold system font</b></p> |
| <p style="font-size: 2em"><i><b>Bold italic system font</b></i></p> |
| </body> |
| </html> |