tor-browser

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

text-decoration-071.xht (885B)


      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   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
      5   <title>CSS Test: 'text-decoration' - inheritance exception 1</title>
      6   <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite"/>
      7   <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#lining-striking-props"/>
      8   <meta name="assert" content="'text-decoration' values must not be propagated to floating descendants"/>
      9   <style type="text/css">
     10   #test{
     11   	font-size:80px;
     12   	text-decoration:line-through;
     13   }
     14   span{
     15   	float:left;
     16   }
     17   </style>
     18  </head>
     19 
     20  <body>
     21   <p>To pass, there <strong>must not</strong> be a line through the text below.</p>
     22   <div id="test">
     23    <span>text</span>
     24   </div>
     25  </body>
     26 </html>