tor-browser

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

c526-font-sz-000.xht (2082B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: font-size</title>
      5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#font-size"/>
      6   <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
      7   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
      8   <style type="text/css"><![CDATA[
      9    p { color: navy; margin: 10px; }
     10    .one {font-size: medium;}
     11    .two {font-size: larger;}
     12    .three {font-size: smaller;}
     13    .four {font-size: xx-small;}
     14    .five {font-size: x-small;}
     15    .six {font-size: small;}
     16    .seven {font-size: large;}
     17    .eight {font-size: x-large;}
     18    .nine {font-size: xx-large;}
     19   ]]></style>
     20   <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-size-props" title="15.7 Font size: the 'font-size' property"/>
     21   <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-size-prop" />
     22  </head>
     23  <body>
     24   <p> This sentence should be normal. </p>
     25   <p class="one"> This sentence should be the same. </p>
     26   <p class="two"> This sentence should be larger than normal. </p>
     27   <p class="three"> This sentence should be smaller than normal. </p>
     28   <p class="four">
     29    This sentence should be very small.
     30    <span class="one">This sentence should be back to normal.</span>
     31   </p>
     32   <p class="five">
     33    This sentence should be rather small.
     34    <span class="one">This sentence should be back to normal.</span>
     35   </p>
     36   <p class="six">
     37    This sentence should be small.
     38    <span class="one">This sentence should be back to normal.</span>
     39   </p>
     40   <p class="seven">
     41    This sentence should be large.
     42    <span class="one">This sentence should be back to normal.</span>
     43   </p>
     44   <p class="eight">
     45    This sentence should be rather large.
     46    <span class="one">This sentence should be back to normal.</span>
     47   </p>
     48   <p class="nine">
     49    This sentence should be very large.
     50    <span class="one">This sentence should be back to normal.</span>
     51   </p>
     52  </body>
     53 </html>