frameset-border-spacing-001

Applying the 'border-spacing' property to a 'frameset' element

WeasyPrint

This browser

Flags
may
Assertion
The user agent may allow the 'border-spacing' property to be applied to an HTML/XHTML 'frameset' element (non-normative rule).

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
 2 <html>
 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=""></frame>
19         <frame src="support/frameset-border-spacing-001.htm"></frame>
20         <frame src=""></frame>
21         <noframes>
22             <body>
23                 <p>Test passes if this text is visible.</p>
24             </body>
25         </noframes>
26     </frameset>
27 </html>