Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Unified Diff: LayoutTests/fast/forms/validity-property.html

Issue 435753003: Implement minlength for <input> and <textarea>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add layout tests for minlength & maxlength together; fix comments Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/forms/validity-property.html
diff --git a/LayoutTests/fast/forms/validity-property.html b/LayoutTests/fast/forms/validity-property.html
index 93ac58d5787472fa864a80da033bbf0460b3444c..9722c69c9a978ed6811bee7cf39343409247cdf6 100644
--- a/LayoutTests/fast/forms/validity-property.html
+++ b/LayoutTests/fast/forms/validity-property.html
@@ -31,7 +31,7 @@ for (var i = 0; i < controls.length; ++i) {
var validity1, validity2;
shouldBeTrue('validity1 = controls[i].validity; validity1 instanceof ValidityState');
shouldBeTrue('validity2 = controls[i].validity; validity1 === validity2');
- shouldBe('countAttr(controls[i].validity)', '10');
+ shouldBe('countAttr(controls[i].validity)', '11');
}
shouldThrow('new ValidityState()', '"TypeError: Illegal constructor"');

Powered by Google App Engine
This is Rietveld 408576698