summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/invalidation-2f.html
blob: f74821f90fd82976a5fbaf6c84bc56794cd5ca35 (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.lastChild, 1, p2.firstChild, 2);

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