tor-browser

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

quotes-page-001.xht (1635B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3     <head>
      4         <title>CSS Test: Quotes not affected by page level quotes</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content" />
      7         <meta name="assert" content="The page content quotes do not affect the depth of generated quotes." />
      8         <style type="text/css">
      9             #test
     10             {
     11                 border: solid blue;
     12                 quotes: '"' '"' "'" "'";
     13             }
     14             #test div:before
     15             {
     16                 content: open-quote;
     17             }
     18             #test div:after
     19             {
     20                 content: close-quote;
     21             }
     22             #reference
     23             {
     24                 border: solid orange;
     25             }
     26         </style>
     27     </head>
     28     <body>
     29         <p>Test passes if the characters in the blue box exactly match the characters in the orange box.</p>
     30         <div id="test">
     31             "document level open quote
     32             <div>first open generated quote
     33                 <div>second set of quotes</div>
     34             close first generated quote</div>
     35             document level close quote"
     36         </div>
     37         <div id="reference">
     38             "document level open quote
     39             <div>"first open generated quote
     40                 <div>'second set of quotes'</div>
     41             close first generated quote"</div>
     42             document level close quote"
     43         </div>
     44     </body>
     45 </html>