swc/crates/swc_html_parser/tests/fixture/comment/basic/input.html

18 lines
293 B
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
2022-04-07 08:12:54 +03:00
<!-- test -->
<!-- foo --><div>baz</div><!-- bar
moo -->
<script><!-- alert(1) --></script>
<script>alert('<!--')</script>
<script>alert('<!-- foo -->')</script>
<script>alert('-->')</script>
</body>
</html>