swc/crates/swc_html_parser/tests/fixture/comment/basic/input.html
2022-05-14 01:43:52 +00:00

18 lines
293 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<!-- test -->
<!-- foo --><div>baz</div><!-- bar
moo -->
<script><!-- alert(1) --></script>
<script>alert('<!--')</script>
<script>alert('<!-- foo -->')</script>
<script>alert('-->')</script>
</body>
</html>