Git init
[framework/web/webkit-efl.git] / LayoutTests / css2.1 / t040109-c17-comments-00-b.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <html>
3  <head>
4   <title>CSS 2.1 Test Suite: Comments</title>
5   <style type="text/css">
6    body { color: red; }
7    /* This is a CSS comment. */
8    .one {color: green;} /* Another comment */
9    /* The following should not be used:
10    .two {color: red;} */
11    .three {color: green; /* color: red; */}
12    /**
13    .four {color: red;} */
14    .five {color: green;}
15    /**/
16    .six {color: green;}
17    /*********/
18    .seven {color: green;}
19    /* a comment **/
20    .eight {color: green;}
21   </style>
22   <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#comments" title="4.1.9 Comments">
23  </head>
24  <body>
25   <p class="one">
26    This line should be green.
27   </p>
28   <p class="three">
29    This line should be green.
30   </p>
31   <p class="five">
32    This line should be green.
33   </p>
34   <p class="six">
35    This line should be green.
36   </p>
37   <p class="seven">
38    This line should be green.
39   </p>
40   <p class="eight">
41    This line should be green.
42   </p>
43  </body>
44 </html>