swc/crates/swc_html_minifier/tests/fixture/element/style-with-wrong-comments/input.html

15 lines
180 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<div>test</div>
<style>
// Comment
a {
color: red;
}
</style>
</body>
</html>