diff options
Diffstat (limited to 'layout/reftests/selection/extend-1h.html')
-rw-r--r-- | layout/reftests/selection/extend-1h.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/selection/extend-1h.html b/layout/reftests/selection/extend-1h.html new file mode 100644 index 000000000..c91639d6a --- /dev/null +++ b/layout/reftests/selection/extend-1h.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<body style="white-space:pre">0123456789 +<script> +document.body.offsetTop; +// Test focus < newfocus < anchor +var t = document.body.firstChild; +var sel = window.getSelection(); +sel.collapse(t, 8); // anchor +sel.extend(t, 1); // focus + +function doTest() { + sel.extend(t, 2); // newfocus + document.documentElement.removeAttribute('class'); +} +document.addEventListener("MozReftestInvalidate", doTest, false); +</script> +</body> +</html> |