Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css2.1 / t040109-c17-comments-01-b.html
blob4af7d4fe5c8f6a9532a0ba6907577fcf5680e442
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: green; }
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="two">
26 This line should be green.
27 </p>
28 <p class="four">
29 This line should be green.
30 </p>
31 </body>
32 </html>