| Index: LayoutTests/fast/forms/input-maxlength.html
|
| diff --git a/LayoutTests/fast/forms/input-maxlength.html b/LayoutTests/fast/forms/input-maxlength.html
|
| index 5cf2ebe44d772fc4f39e7030cdefe868ab4c77b9..4d180916089e198b0e119bcdd63abbe1d9eb673a 100644
|
| --- a/LayoutTests/fast/forms/input-maxlength.html
|
| +++ b/LayoutTests/fast/forms/input-maxlength.html
|
| @@ -47,7 +47,7 @@
|
| debug('Some tests for .maxLength property.');
|
| input = document.createElement("input");
|
| shouldBe("input.maxLength", "implicitMaxLength");
|
| - shouldThrow("input.maxLength = -1", "'IndexSizeError: Index or size was negative, or greater than the allowed value.'");
|
| + 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>
|
|
|