blob: 5116a8d9e09de91f2a6ed724b4f595c4d9772c94 [file] [log] [blame]
<!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">Something in the air</textarea>
</form>
<script>
var shadowRoot = host.createShadowRoot();
shadowRoot.appendChild(document.createElement('shadow'));
</script>