mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
textarea minLength/maxLength
This commit is contained in:
parent
440e855c33
commit
bdb6706f19
6 changed files with 173 additions and 549 deletions
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>textarea maxlength</title>
|
||||
<link rel="author" title="tigercosmos" href="mailto:phy.tiger@gmail.com">
|
||||
<link rel=help href="https://html.spec.whatwg.org/multipage/#attr-textarea-maxlength">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<textarea id="none"></textarea>
|
||||
<textarea id="negative" maxlength="-5"></textarea>
|
||||
<textarea id="non-numeric" maxlength="not-a-number"></textarea>
|
||||
<textarea id="assign-negative"></textarea>
|
||||
<textarea id="assign-non-numeric"></textarea>
|
||||
|
||||
<script>
|
||||
test(
|
||||
function () {
|
||||
assert_equals(document.getElementById("none").maxLength, -1);
|
||||
}, "Unset maxlength is -1");
|
||||
|
||||
test(
|
||||
function () {
|
||||
assert_equals(document.getElementById("negative").maxLength, -1);
|
||||
}, "Negative maxlength is always -1");
|
||||
|
||||
test(
|
||||
function () {
|
||||
assert_equals(document.getElementById("non-numeric").maxLength, -1);
|
||||
}, "Non-numeric maxlength is -1");
|
||||
|
||||
test(
|
||||
function () {
|
||||
assert_throws("INDEX_SIZE_ERR", function () {
|
||||
document.getElementById("assign-negative").maxLength = -5;
|
||||
});
|
||||
}, "Assigning negative integer throws IndexSizeError");
|
||||
|
||||
test(
|
||||
function () {
|
||||
document.getElementById("assign-non-numeric").maxLength = "not-a-number";
|
||||
assert_equals(document.getElementById("assign-non-numeric").maxLength, 0);
|
||||
}, "Assigning non-numeric to maxlength sets maxlength to 0");
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>textarea minlength</title>
|
||||
<link rel="author" title="tigercosmos" href="mailto:phy.tiger@gmail.com">
|
||||
<link rel=help href="https://html.spec.whatwg.org/multipage/#attr-textarea-minlength">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<textarea id="none"></textarea>
|
||||
<textarea id="negative" minlength=-5></textarea>
|
||||
<textarea id="non-numeric" minlength="not-a-number"></textarea>
|
||||
<textarea id="assign-negative"></textarea>
|
||||
<textarea id="assign-non-numeric"></textarea>
|
||||
|
||||
<script>
|
||||
test(
|
||||
function () {
|
||||
assert_equals(document.getElementById("none").minLength, -1);
|
||||
}, "Unset minlength is -1");
|
||||
|
||||
test(
|
||||
function () {
|
||||
assert_equals(document.getElementById("negative").minLength, -1);
|
||||
}, "Negative minlength is always -1");
|
||||
|
||||
test(
|
||||
function () {
|
||||
assert_equals(document.getElementById("non-numeric").minLength, -1);
|
||||
}, "Non-numeric minlength is -1");
|
||||
|
||||
test(
|
||||
function () {
|
||||
assert_throws("INDEX_SIZE_ERR", function () {
|
||||
document.getElementById("assign-negative").minLength = -5;
|
||||
});
|
||||
}, "Assigning negative integer throws IndexSizeError");
|
||||
|
||||
test(
|
||||
function () {
|
||||
document.getElementById("assign-non-numeric").minLength = "not-a-number";
|
||||
assert_equals(document.getElementById("assign-non-numeric").minLength, 0);
|
||||
}, "Assigning non-numeric to minlength sets minlength to 0");
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue