mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
25 lines
517 B
HTML
25 lines
517 B
HTML
<!DOCTYPE HTML>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
function doTest() {
|
|
var text = document.body.firstChild;
|
|
// Replace two lines with three lines (but not at line boundaries)
|
|
text.replaceData(34, 7, "5\nLine 6\nLine ");
|
|
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 3
|
|
Line 4
|
|
Line X
|
|
Line 7
|
|
Line 8
|
|
Line 9
|
|
</body>
|
|
</html>
|