summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/dialog/inert-node-is-not-highlighted-expected.html
blob: 3aaeb5f75bc0fc859b50d10770adebb4e1715a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<style>
body p, span {
    -webkit-user-select: none;
}
</style>
</head>
<body>
<p>Test that inert nodes are not painted as being selected. The test passes if
none of the text outside the dialog is highlighted when selected.</p>

<p>Although not shown as selected, the inert nodes are in window.getSelection()
and copied to the clipboard, which is the same behavior as -webkit-user-select:
none (crbug.com/147490).</p>

<br><span>This text shouldn't be highlighted as selected.</span>

<dialog>
    <div id="selectable">I'm selectable.</div>
</dialog>

<script>
dialog = document.querySelector('dialog');
dialog.show();
selectable = document.querySelector('#selectable');
window.getSelection().selectAllChildren(selectable);
</script>
</body>
</html>