Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html b/third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html |
| index d95eb452d7abfd58b15307a88f2f1393af50f407..0432e3df7df4b1882f76822914c4b00dc97f6648 100644 |
| --- a/third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html |
| +++ b/third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html |
| @@ -46,7 +46,7 @@ |
| debug('Some tests for .maxLength property.'); |
| input = document.createElement("input"); |
| - shouldBe("input.maxLength", "implicitMaxLength"); |
| + shouldBe("input.maxLength", "-1"); |
|
tkent
2016/01/22 05:03:30
Let's remove line 49 and 50 because they are teste
|
| shouldThrow("input.maxLength = -1", '"IndexSizeError: Failed to set the \'maxLength\' property on \'HTMLInputElement\': The value provided (-1) is negative."'); |
| input.maxLength = 100; |
| shouldBe("input.getAttribute('maxlength')", "'100'"); |