Files
UXP-Fixed/layout/base/tests/bug1132768-1-ref.html
T
2018-02-02 04:16:08 -05:00

13 lines
242 B
HTML

<!DOCTYPE html>
<html>
<script>
function test() {
focus();
getSelection().selectAllChildren(document.querySelector("span"));
}
</script>
<body onload="test()">
<div>foo<span>bar</span>baz</div>
</body>
</html>