https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7d573c967f2bdc44ad44e754192674fd3d204a19 authored by ffxbld on 03 March 2016, 21:59:23 UTC
Added FENNEC_45_0_RELEASE FENNEC_45_0_BUILD3 tag(s) for changeset 018c9e0e7da3. DONTBUILD CLOSED TREE a=release
Tip revision: 7d573c9
extend-1g.html
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<body style="white-space:pre">0123456789
<script>
document.body.offsetTop;
// Test newfocus = focus < anchor
var t = document.body.firstChild;
var sel = window.getSelection();
sel.collapse(t, 8); // anchor
sel.extend(t, 2);   // focus

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