| OLD | NEW |
| 1 This page tests that the maxlength attribute of the <input> element works correc
tly. http://bugs.webkit.org/show_bug.cgi?id=14388 | 1 This page tests that the maxlength attribute of the <input> element works correc
tly. http://bugs.webkit.org/show_bug.cgi?id=14388 |
| 2 | 2 |
| 3 Attempting to insert 0 characters with maxLength = -1. | 3 Attempting to insert 0 characters with maxLength = -1. |
| 4 PASS | 4 PASS |
| 5 Attempting to insert 0 characters with maxLength = 100. | 5 Attempting to insert 0 characters with maxLength = 100. |
| 6 PASS | 6 PASS |
| 7 Attempting to insert 0 characters with maxLength = 524288. | 7 Attempting to insert 0 characters with maxLength = 524288. |
| 8 PASS | 8 PASS |
| 9 Attempting to insert 0 characters with maxLength = 600000. | 9 Attempting to insert 0 characters with maxLength = 600000. |
| 10 PASS | 10 PASS |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 PASS | 66 PASS |
| 67 Attempting to insert 530000 characters with maxLength = -1. | 67 Attempting to insert 530000 characters with maxLength = -1. |
| 68 PASS | 68 PASS |
| 69 Attempting to insert 530000 characters with maxLength = 100. | 69 Attempting to insert 530000 characters with maxLength = 100. |
| 70 PASS | 70 PASS |
| 71 Attempting to insert 530000 characters with maxLength = 524288. | 71 Attempting to insert 530000 characters with maxLength = 524288. |
| 72 PASS | 72 PASS |
| 73 Attempting to insert 530000 characters with maxLength = 600000. | 73 Attempting to insert 530000 characters with maxLength = 600000. |
| 74 PASS | 74 PASS |
| 75 Some tests for .maxLength property. | 75 Some tests for .maxLength property. |
| 76 PASS input.maxLength is implicitMaxLength | |
| 77 PASS input.maxLength = -1 threw exception IndexSizeError: Failed to set the 'max
Length' property on 'HTMLInputElement': The value provided (-1) is negative.. | |
| 78 PASS input.getAttribute('maxlength') is '100' | 76 PASS input.getAttribute('maxlength') is '100' |
| 79 PASS successfullyParsed is true | 77 PASS successfullyParsed is true |
| 80 | 78 |
| 81 TEST COMPLETE | 79 TEST COMPLETE |
| 82 | 80 |
| OLD | NEW |