Bug 1901077 - Switch GIF decoder to yield new frames at terminating block. r=tnikkel
[gecko.git] / testing / web-platform / tests / css / CSS2 / selectors / first-line-selector-003.xht
blob8686eeece7a94aedd435990b8597a2a4a65073ff
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: Table cells usage with :first-line</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="The first line of a table-cell cannot be the first formatted line of an ancestor element." />
8         <style type="text/css">
9             table:first-line
10             {
11                 background: red;
12             }
13         </style>
14     </head>
15     <body>
16         <p>Test passes if there is no red visible on the page.</p>
17         <table>
18             <tr>
19                 <td>Filler Text</td>
20             </tr>
21         </table>
22     </body>
23 </html>