c17-comments-001.xht (1195B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Comments</title> 5 <link rel="help" href="http://www.w3.org/TR/REC-CSS1#comments"/> 6 <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/> 7 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 8 <link rel="match" href="c17-comments-001-ref.xht" /> 9 10 <style type="text/css"><![CDATA[ 11 body { color: green; } 12 /* This is a CSS comment. */ 13 .one {color: green;} /* Another comment */ 14 /* The following should not be used: 15 .two {color: red;} */ 16 .three {color: green; /* color: red; */} 17 /** 18 .four {color: red;} */ 19 .five {color: green;} 20 /**/ 21 .six {color: green;} 22 /*********/ 23 .seven {color: green;} 24 /* a comment **/ 25 .eight {color: green;} 26 ]]></style> 27 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#comments" title="4.1.9 Comments"/> 28 </head> 29 <body> 30 <p class="two"> 31 This sentence should be green. 32 </p> 33 <p class="four"> 34 This sentence should be green. 35 </p> 36 </body> 37 </html>