tor-browser

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

background-327.xht (1353B)


      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: Background with inherit inheriting two values</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-04-17 -->
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background" />
      8         <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties" />
      9         <link rel="match" href="background-326-ref.xht" />
     10 
     11         <meta name="flags" content="image" />
     12         <meta name="assert" content="Background set to 'inherit' works when inheriting two values." />
     13         <style type="text/css">
     14             #wrapper
     15             {
     16                 background: black url('support/green15x15.png');
     17             }
     18             #test
     19             {
     20                 background: red;
     21                 background: inherit;
     22                 height: 1in;
     23             }
     24         </style>
     25     </head>
     26     <body>
     27         <p>Test passes if there is <strong>no red</strong>.</p>
     28         <div id="wrapper">
     29             <div id="test"></div>
     30         </div>
     31     </body>
     32 </html>