summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/line-editing-1e.html
blob: d149957c0a138e86086cdecd908996200b73109a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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);
</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>