summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/line-editing-1b.html
blob: 35c5fe4e71a2b43770c0bfe0f14bdc7afb2f0cd7 (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
25
<!DOCTYPE HTML>
<html class="reftest-wait">
<head>
<script>
function doTest() {
  var text = document.body.firstChild;
  // Insert a line, then make a change after it
  text.insertData(8, "Line 2\n");
  text.replaceData(55, 1, "8");
  document.documentElement.removeAttribute('class');
}
document.addEventListener("MozReftestInvalidate", doTest);
</script>
</head>
<body style="white-space:pre; padding: 2px; font-family: sans-serif;">
Line 1
Line 3
Line 4
Line 5
Line 6
Line 7
Line X
Line 9
</body>
</html>