gecko/layout/reftests/selection/dynamic-text-1b.html

20 lines
421 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html class="reftest-wait">
<head>
<body style="white-space:pre">EFGH
IJKL
<script>
var t = document.body.firstChild;
var sel = window.getSelection();
sel.collapse(t, 1);
sel.extend(t, 3);
function doTest() {
t.insertData(0, 'ABCD\n');
document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</body>
</html>