| OLD | NEW |
| 1 PASS simulateTextEntry(elements[0], '', BEFORE); is false | 1 PASS simulateTextEntry(elements[0], '', BEFORE); is false |
| 2 PASS simulateTextEntry(elements[0], 'fo', BEFORE); is true | 2 PASS simulateTextEntry(elements[0], 'fo', BEFORE); is true |
| 3 PASS simulateTextEntry(elements[0], 'o'); is true | 3 PASS simulateTextEntry(elements[0], 'o'); is true |
| 4 PASS simulateTextEntry(elements[0], 'foo', BEFORE); is false | 4 PASS simulateTextEntry(elements[0], 'foo', BEFORE); is false |
| 5 PASS simulateTextEntry(elements[0], 'foo', BEFORE); is false | 5 PASS simulateTextEntry(elements[0], 'foo', BEFORE); is false |
| 6 PASS simulateTextEntry(elements[0], ' '); is true | 6 PASS simulateTextEntry(elements[0], ' '); is true |
| 7 PASS simulateTextEntry(elements[0], 'foo bar', BEFORE); is true | 7 PASS simulateTextEntry(elements[0], 'foo bar', BEFORE); is true |
| 8 PASS simulateTextEntry(elements[0], 'foo bar', BEFORE); is false | 8 PASS simulateTextEntry(elements[0], 'foo bar', BEFORE); is false |
| 9 PASS setTextValue(elements[0], 'foo'); is false | 9 PASS setTextValue(elements[0], 'foo'); is false |
| 10 PASS simulateTextEntry(elements[0], 'foo bar', BEFORE); is true | 10 PASS simulateTextEntry(elements[0], 'foo bar', BEFORE); is true |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 PASS setTextValue(elements[3], ''); is false | 22 PASS setTextValue(elements[3], ''); is false |
| 23 PASS simulateTextEntry(elements[3], 'fo', BEFORE); is true | 23 PASS simulateTextEntry(elements[3], 'fo', BEFORE); is true |
| 24 PASS simulateTextEntry(elements[3], 'o'); is true | 24 PASS simulateTextEntry(elements[3], 'o'); is true |
| 25 PASS simulateTextEntry(elements[3], 'foo', BEFORE); is false | 25 PASS simulateTextEntry(elements[3], 'foo', BEFORE); is false |
| 26 PASS simulateTextEntry(elements[4], 'foo', AFTER); is false | 26 PASS simulateTextEntry(elements[4], 'foo', AFTER); is false |
| 27 PASS simulateTextEntry(elements[4], 'foo'); is true | 27 PASS simulateTextEntry(elements[4], 'foo'); is true |
| 28 PASS simulateTextEntry(elements[4], 'foo', BEFORE); is false | 28 PASS simulateTextEntry(elements[4], 'foo', BEFORE); is false |
| 29 PASS simulateTextEntry(elements[4], 'foo', BEFORE | AFTER); is true | 29 PASS simulateTextEntry(elements[4], 'foo', BEFORE | AFTER); is true |
| 30 PASS simulateTextEntry(elements[4], '', AFTER); is false | 30 PASS simulateTextEntry(elements[4], '', AFTER); is false |
| 31 PASS simulateTextEntry(elements[4], 'foo', AFTER); is false | 31 PASS simulateTextEntry(elements[4], 'foo', AFTER); is false |
| 32 PASS successfullyParsed is true |
| 32 | 33 |
| 34 TEST COMPLETE |
| 35 |
| OLD | NEW |