Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t0509-c15-ids-00-a.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: ID as selector</title>
5   <style type="text/css">
6    body {color: red;}
7    #test1 {color: green;}
8    #test2 {color: green;}
9    p#test3 {color: green;}
10   </style>
11   <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#id-selectors" title="5.9 ID selectors">
12  </head>
13  <body>
14   <p id="test1"> This line should be green. </p>
15   <p id="test2"> This line should be green. </p>
16   <p id="test3"> This line should be green. </p>
17  </body>
18 </html>