summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/invalidation-2c.html
blob: 8d3bfd15cc7e54bb00260dd376ccbef90f6eb54b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<body>
<p id="first">f<span>o</span>o</p>
<p id="second">bar</p>
<script>
document.body.offsetTop;
var p1 = document.getElementById("first");
var p2 = document.getElementById("second");
var selection = window.getSelection();
selection.setBaseAndExtent(p1.childNodes.item(1).firstChild, 0, p2.firstChild, 2);

function doTest() {
  selection.collapse(p2.firstChild, 3);
  document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>