tor-browser

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

grouping-001.xht (898B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      3 <html xmlns="http://www.w3.org/1999/xhtml">
      4  <head>
      5   <title>CSS Test: Selectors: Grouping: Invalid grouping</title>
      6   <link rel="author" title="Gabriele Romanato" href="mailto:gabriele.romanato@gmail.com" />
      7   <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#grouping" />
      8   <link rel="match" href="grouping-000-ref.xht"/>
      9   <link rel="mismatch" href="grouping-000-notref.xht"/>
     10   <meta name="flags" content="invalid" />
     11   <meta name="assert" content="Browsers should ignore an invalid grouping"/>
     12 <style type="text/css">
     13 * {font-weight: bold}
     14 p, div, h4 {color: green}
     15 p, div, h4, {color: red}
     16 </style>
     17  </head>
     18  <body>
     19 <p>This text should be green.</p>
     20 <div>This text should be green.</div>
     21 <h4>This text should be green.</h4>
     22  </body>
     23 </html>