7 lines
164 B
HTML
7 lines
164 B
HTML
<!doctype html>
|
|
<div id="host"></div>
|
|
<script>
|
|
host.attachShadow({ mode: "open" }).innerHTML = `
|
|
<input type="text" value="Should not be red">
|
|
`;
|
|
</script>
|