| 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..98038ab6bb98b8b91a2d9a797de6465851525457 100644 | 
| --- a/third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html | 
| +++ b/third_party/WebKit/LayoutTests/fast/forms/text/input-maxlength.html | 
| @@ -46,8 +46,6 @@ | 
|  | 
| debug('Some tests for .maxLength property.'); | 
| input = document.createElement("input"); | 
| -    shouldBe("input.maxLength", "implicitMaxLength"); | 
| -    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'"); | 
| </script> | 
|  |