tenfourfox/layout/reftests/text/line-editing-1a.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

28 lines
520 B
HTML

<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
var text = document.body.firstChild;
// Delete a line, then make a change after it
text.deleteData(8, 7);
text.replaceData(55, 1, "8");
document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</head>
<body style="white-space:pre; padding: 2px; font-family: sans-serif;">
Line 1
Line 2
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line X
Line 9
</body>
</html>