tor-browser

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

c13-inheritance-000.xht (1375B)


      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: Inheritance</title>
      5   <link rel="help" href="http://www.w3.org/TR/REC-CSS1#inheritance"/>
      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   <link rel="match" href="c13-inheritance-000-ref.xht" />
      9 
     10   <style type="text/css"><![CDATA[
     11    body { color: green; }
     12    .a { background: green; color: white; }
     13    .a1 { font-style: italic; }
     14    .b { color: white; }
     15    em { color: green; }
     16    dfn { color: white; }
     17   ]]></style>
     18   <link rel="help" href="http://www.w3.org/TR/CSS21/cascade.html#inheritance" title="6.2 Inheritance"/>
     19   <link rel="help" href="http://www.w3.org/TR/css-cascade-3/#inheriting"/>
     20   <link rel="help" href="http://www.w3.org/TR/css-cascade-4/#inheriting"/>
     21   <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#colors" title="14.1 Foreground color: the 'color' property"/>
     22 
     23  </head>
     24  <body>
     25   <p> This sentence should be green. </p>
     26   <p class="a"> This sentence <span class="a1">should be</span> white on green. </p>
     27   <p class="b"> <em>PASS</em> <strong>FAIL</strong> </p>
     28   <p class="c"> PASS <dfn>FAIL</dfn> </p>
     29  </body>
     30 </html>