blob: c8bea2db45f9dae378834d74e6434d6cc39a4659 [file] [log] [blame]
<!DOCTYPE html>
<script src="resources/polyfill.js"></script>
<p>When the AuthorShadowDOM does not have a Shadow DOM, the content won't be rendered.</p>
<form>
<output id="host" style="display: inline-block; width: 100px; height: 30px">ohyohyo</output>
<input id="submit" type="submit" value="Submit">
</form>
<script>
var host = document.getElementById('host');
var shadowRoot = host.webkitCreateShadowRoot();
</script>