tor-browser

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

frameset-border-spacing-001.xht (1146B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3     <head>
      4         <title>CSS Test: Applying the 'border-spacing' property to a 'frameset' element</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#separated-borders" />
      7         <meta name="flags" content="may" />
      8         <meta name="assert" content="The user agent may allow the 'border-spacing' property to be applied to an HTML/XHTML 'frameset' element (non-normative rule)." />
      9         <style type="text/css">
     10             frameset
     11             {
     12                 border: 2px solid blue;
     13                 border-spacing: 2em;
     14             }
     15         </style>
     16     </head>
     17     <frameset cols="33%, 33%, *">
     18         <frame src="" />
     19         <frame src="support/frameset-border-spacing-001.htm" />
     20         <frame src="" />
     21         <noframes>
     22             <body>
     23                 <p>Test passes if this text is visible.</p>
     24             </body>
     25         </noframes>
     26     </frameset>
     27 </html>