blob: 6d12c0409dfde7d7a5119592028d320ce7837f83 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
<script src="../../fast/dom/resources/event-sender-util.js"></script>
<script src="../../fast/dom/resources/shadow-test-driver.js"></script>
<script src="../../fast/dom/shadow/resources/polyfill.js"></script>
</head>
<body>
<p>Nodes of the selection for an orphan shadow root should return null.</p>
<pre id="console"></pre>
<script>
var host = document.createElement('div');
var shadowRoot = host.webkitCreateShadowRoot();
shadowRoot.innerHTML = "Kotori Otonashi"
var selection = shadowRoot.getSelection();
shouldBe('selection.anchorNode', 'null');
shouldBe('selection.focusNode', 'null');
shouldBe('selection.baseNode', 'null');
shouldBe('selection.extentNode', 'null');
var successfullyParsed = true;
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>