2 void test_html_comment_entities() {
3 test_parser_verify_entity(
4 test_parser_sourcefile("html", " <!--comment-->"),
5 "comment", "<!--comment-->"
7 test_parser_verify_entity(
8 test_parser_sourcefile("html", "<style type='text/css'>\n/*comment*/\n</style>"),
9 "comment", "/*comment*/"
11 test_parser_verify_entity(
12 test_parser_sourcefile("html", "<script type='text/javascript'>\n//comment\n</script>"),
13 "comment", "//comment"
15 test_parser_verify_entity(
16 test_parser_sourcefile("html", "<script type='text/javascript'>\n/*comment*/\n</script>"),
17 "comment", "/*comment*/"
21 void all_html_tests() {
22 test_html_comment_entities();