chromium/third_party/blink/web_tests/css2.1/t040109-c17-comments-00-b.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
  <title>CSS 2.1 Test Suite: Comments</title>
  <style type="text/css">
   body { color: red; }
   /* This is a CSS comment. */
   .one {color: green;} /* Another comment */
   /* The following should not be used:
   .two {color: red;} */
   .three {color: green; /* color: red; */}
   /**
   .four {color: red;} */
   .five {color: green;}
   /**/
   .six {color: green;}
   /*********/
   .seven {color: green;}
   /* a comment **/
   .eight {color: green;}
  </style>
  <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#comments" title="4.1.9 Comments">
 </head>
 <body>
  <p class="one">
   This line should be green.
  </p>
  <p class="three">
   This line should be green.
  </p>
  <p class="five">
   This line should be green.
  </p>
  <p class="six">
   This line should be green.
  </p>
  <p class="seven">
   This line should be green.
  </p>
  <p class="eight">
   This line should be green.
  </p>
 </body>
</html>