| Index: LayoutTests/fast/forms/textarea-minlength.html
|
| diff --git a/LayoutTests/fast/forms/textarea-minlength.html b/LayoutTests/fast/forms/textarea-minlength.html
|
| index 45146638f9d52def8b751fa276bb6fc91afe9fd9..da0f489370f8e7e269313a34ed19ba0e40d77d57 100644
|
| --- a/LayoutTests/fast/forms/textarea-minlength.html
|
| +++ b/LayoutTests/fast/forms/textarea-minlength.html
|
| @@ -21,6 +21,14 @@ shouldBe('textArea.minLength', '-1');
|
| textArea.setAttribute('minlength', 'xyz');
|
| shouldBe('textArea.minLength', '-1');
|
|
|
| +// Leading whitespaces in minlength attributes
|
| +textArea.setAttribute('minlength', '\t \n\r1');
|
| +shouldBe('textArea.minLength', '1');
|
| +textArea.setAttribute('minlength', "\u20021");
|
| +shouldBe('textArea.minLength', '-1');
|
| +textArea.setAttribute('minlength', "\u20091");
|
| +shouldBe('textArea.minLength', '-1');
|
| +
|
| // Valid minlength attributes
|
| textArea.setAttribute('minlength', '1');
|
| shouldBe('textArea.minLength', '1');
|
|
|