blob: 78aa7078cfefd4615428e25d342a553a6fe51c36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<textarea id="host" rows="8" cols="20">Something in the air</textarea>
</form>
<script>
var shadowRoot = host.createShadowRoot();
shadowRoot.appendChild(document.createElement('shadow'));
</script>
|