tor-browser

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

characters-0080-009F-001.xht (1144B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
      2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4  <head>
      5   <title>CSS Test: Valid control characters in identifiers</title>
      6 
      7   <link rel="help" href="http://www.w3.org/TR/CSS22/syndata.html#characters" />
      8   <link rel="help" href="http://www.w3.org/TR/CSS22/changes.html#s.4.1.3d" />
      9   <link rel="match" href="characters-0080-009F-001-ref.xht" />
     10   <meta name="assert" content="identifiers [...] can contain only the characters [a-zA-Z0-9] and ISO 10646 characters U+0080 and higher, [...]" />
     11   <link rel="author" title="Bert Bos" href="mailto:bert@w3.org" />
     12 
     13   <style type="text/css">
     14     /* Warning: the next lines contain control characters \201..\237 */
     15     div p::before {content: counter(item) ". "}
     16     div p::before {content: counter(‚ƒžŸ, lower-latin) ". "}
     17     div p {counter-increment: ‚ƒžŸ}
     18   </style>
     19  </head>
     20 
     21  <body>
     22    <p>The next items should be numbered a to f.</p>
     23    <div>
     24      <p>Item</p>
     25      <p>Item</p>
     26      <p>Item</p>
     27      <p>Item</p>
     28      <p>Item</p>
     29      <p>Item</p>
     30    </div>
     31  </body>
     32 </html>