summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/invalidation-1-ref.html
blob: a0f7f151e97694de381496250305abf84f2d195e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<body>
<p id="first">f<span>o</span>o</p>
<p id="second">bar</p>
<script>
var p1 = document.getElementById("first");
var p2 = document.getElementById("second");
var selection = window.getSelection();
selection.setBaseAndExtent(p1.firstChild, 0, p2.firstChild, 2);
</script>
</body>
</html>