2009-07-26 15:07:22 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="reftest-wait">
|
|
|
|
<head>
|
2009-11-15 14:52:31 -08:00
|
|
|
<body style="white-space:pre"> FG
|
|
|
|
JK
|
2009-07-26 15:07:22 -07:00
|
|
|
<script>
|
2009-11-15 14:52:31 -08:00
|
|
|
document.body.offsetTop;
|
2009-07-26 15:07:22 -07:00
|
|
|
var t = document.body.firstChild;
|
|
|
|
var sel = window.getSelection();
|
|
|
|
sel.collapse(t, 1);
|
|
|
|
sel.extend(t, 3);
|
|
|
|
|
|
|
|
function doTest() {
|
2009-11-15 14:52:31 -08:00
|
|
|
t.insertData(0, ' BC \n');
|
2009-07-26 15:07:22 -07:00
|
|
|
document.documentElement.removeAttribute('class');
|
|
|
|
}
|
|
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|