tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

reflow-sanity-delay-1b.html (1017B)


      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: reflow1b;
     11  src: url(../fonts/markfonts-delay.sjs?font=markA&delay=2500&test=delay-1b);
     12 }
     13 
     14 @font-face {
     15  font-family: reflow1b;
     16  src: url(../fonts/markfonts-delay.sjs?font=markB&delay=500&test=delay-1b);
     17  font-weight: bold;
     18 }
     19 
     20 @font-face {
     21  font-family: reflow1b;
     22  src: url(../fonts/markfonts-delay.sjs?font=markC&delay=1100&test=delay-1b);
     23  font-style: italic;
     24 }
     25 
     26 @font-face {
     27  font-family: reflow1b;
     28  src: url(../fonts/markfonts-delay.sjs?font=markD&delay=100&test=delay-1b);
     29  font-weight: bold;
     30  font-style: italic;
     31 }
     32 
     33 div#test {
     34  font-family: reflow1b;
     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>