summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/extend-1c.html
blob: 0a963f4405ebad6c3d7f48f8f28ca1962b6fa6b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<body style="white-space:pre">0123456789
<script>
document.body.offsetTop;
// Test anchor < newfocus < focus
var t = document.body.firstChild;
var sel = window.getSelection();
sel.collapse(t, 2); // anchor
sel.extend(t, 9);   // focus

function doTest() {
  sel.extend(t, 8); // newfocus
  document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>