Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE HTML>
2 <html class="reftest-wait">
3 <head>
4 <script>
5 function doTest() {
6 var text = document.body.firstChild;
7 // Insert a line, then make a change after it
8 text.insertData(8, "Line 2\n");
9 text.replaceData(55, 1, "8");
10 document.documentElement.removeAttribute('class');
11 }
12 document.addEventListener("MozReftestInvalidate", doTest, false);
13 </script>
14 </head>
15 <body style="white-space:pre; padding: 2px; font-family: sans-serif;">
16 Line 1
17 Line 3
18 Line 4
19 Line 5
20 Line 6
21 Line 7
22 Line X
23 Line 9
24 </body>
25 </html>