tor-browser

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

first-line-selector-009.xht (972B)


      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: First-line and inapplicable properties</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-line-pseudo" />
      7         <meta name="assert" content="First-line does not allow the float, border or direction properties." />
      8         <style type="text/css">
      9             #div2:first-line
     10             {
     11                 float: right;
     12                 border: 25px solid;
     13                 direction: rtl;
     14             }
     15         </style>
     16     </head>
     17     <body>
     18         <p>Test passes if the two lines of text below look identical.</p>
     19         <div id="div1">Filler Text Filler Text Filler Text</div>
     20         <div id="div2">Filler Text Filler Text Filler Text</div>
     21     </body>
     22 </html>