mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
242 B
HTML
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>
|