blob: 0379ca90a72eecdcca74abde07c4b628729f98f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<style>
* { counter-reset: c; }
</style>
<script>
function go() {
host.attachShadow({ mode: "open" }).innerHTML = form.outerHTML;
}
</script>
<body onload=go()>
<form id="form" style="counter-reset: c">
<div id="host">
|