tor-browser

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

core-syntax-009.xht (1046B)


      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: Syntactic White Space</title>
      5   <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/"/>
      6   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#tokenization"/>
      7   <link rel="match" href="../reference/ref-this-text-should-be-green.xht"/>
      8   <meta name="assert" content="Only the characters U+0020, U+0009, U+000A,
      9     U+000D, and U+000C are considered white space."/>
     10   <meta name="flags" content="invalid" />
     11   <style type="text/css">
     12     @import "support/core-syntax-009.css";
     13     div&#x2003;p { color: red; }
     14     div&#x200B;p { color: red; }
     15     div&#x200F;p { color: red; }
     16     div&#x3000;p { color: red; }
     17     div&#x2028;p { color: red; }
     18     div&#x2029;p { color: red; }
     19     div&#x00A0;p { color: red; }
     20     div&#xFEFF;p { color: red; }
     21   </style>
     22 
     23  </head>
     24  <body>
     25   <div>
     26    <p>This text should be green.</p>
     27   </div>
     28  </body>
     29 </html>