swc/crates/swc_html_minifier/tests/fixture/attribute/boolean/input.html
2022-04-28 02:30:53 +00:00

20 lines
491 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<p><button autofocus value="next">Button</button></p>
<p><button autofocus="autofocus" value="next">Button</button></p>
<p><button autofocus=" autofocus " value="next">Button</button></p>
<p><button autofocus="true" value="next">Button</button></p>
<p><button autofocus="false" value="next">Button</button></p>
<img draggable="false">
<img draggable="true">
<img data-readonly="test">
</body>
</html>