blob: 30b100642cc1a397003e9a4aeccf5a07de1a494d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<style>
.c1 { display: contents; }
</style>
<script>
function go() {
a.attachShadow({mode: "open"}).innerHTML = `<slot> </slot> `;
b.appendChild(a);
}
</script>
<body onload=go()>
<div id="a" class="c1">
<span></span>
</div>
<svg>
<text id="b">
|