swc/crates/swc_html_minifier/tests/fixture/attribute/part/input.html

32 lines
287 B
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<style>
c-e::part(textspan) { color: red; }
</style>
<template id="c-e-template">
<span part="
textspan
a
b
c
">This text will be red</span>
</template>
<c-e></c-e>
</body>
</html>