https://github.com/mozilla/gecko-dev
Raw File
Tip revision: efb967f8cf084ccda44399f40ef4669ef97d39d1 authored by Jonathan Griffin on 12 February 2013, 18:10:03 UTC
Bug 839675 - Prevent out-of-sync problems. r=mdas, a=akeybl
Tip revision: efb967f
synthetic-style-2.html
<!DOCTYPE HTML>
<html>
<head>
<title>Synthetic bold should not use true bold face</title>
<!-- see bug 724231 -->
<style type="text/css">
@font-face {
  font-family: test;
  src: local(Times New Roman), local(Times), local(DejaVu Serif), local(FreeSerif), local(Droid Serif);
}
body {
  font-family: test, sans-serif;
}
</style>
</head>
<body>
<p><b>Synthetic bold</b> should <b>not</b> use the true bold face.
</body>
</html>
back to top