blob: ca5cce936cbeb0f511a9f06dc5de0150e44dad39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<body>
<p>When the AuthorShadowDOM does not have a shadow element, the content should not be rendered.</p>
<form>
<button id="host">something</button>
</form>
<script>
var host = document.getElementById('host');
var shadowRoot = host.createShadowRoot();
</script>
</body>
</html>
|