reflow-sanity-1.html (830B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>test @font-face reflow sanity</title> 5 <meta charset="utf-8"> 6 <style> 7 body { margin: 20px } 8 9 @font-face { 10 font-family: reflow1; 11 src: url(../fonts/markA.ttf); 12 } 13 14 @font-face { 15 font-family: reflow1; 16 src: url(../fonts/markB.ttf); 17 font-weight: bold; 18 } 19 20 @font-face { 21 font-family: reflow1; 22 src: url(../fonts/markC.ttf); 23 font-style: italic; 24 } 25 26 @font-face { 27 font-family: reflow1; 28 src: url(../fonts/markD.ttf); 29 font-weight: bold; 30 font-style: italic; 31 } 32 33 div#test { 34 font-family: reflow1; 35 font-size: 400%; 36 line-height: 1em; 37 } 38 39 div#test p { 40 margin: 0; 41 display: inline-block; 42 } 43 </style> 44 </head> 45 46 <body> 47 <div id=test> 48 <p>A</p> 49 <p style="font-weight: bold">B</p> 50 <p style="font-style: italic">C</p> 51 <p style="font-style: italic; font-weight: bold">D</p> 52 </div> 53 </body> 54 </html>