blob: 1f9aadb03b61987236062a99a598dad0d63797ae [file] [log] [blame]
<!DOCTYPE html>
<script src="resources/polyfill.js"></script>
<p>When the AuthorShadowDOM has only a shadow element, this should be rendered like no Shadow DOM is added.</p>
<form>
<output id="host">foobar</output>
<input id="submit" type="submit" value="Submit">
</form>
<script>
var host = document.getElementById('host');
var shadowRoot = host.webkitCreateShadowRoot();
shadowRoot.innerHTML = "<shadow></shadow>"
</script>