swc/crates/swc_html_minifier/tests/fixture/element/style-disable-compress-css/input.html
2022-06-15 04:04:57 +00:00

26 lines
327 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<style type="text/css">
a {
color: red;
}
</style>
<style type="TEXT/CSS">
a {
color: red;
}
</style>
<style>
a {
color: red;
}
</style>
<style type="not/css">
K e E p
</style>
</body>
</html>