mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
LibWeb: Flip on checkValidity() for HTMLTextAreaElement
This is a simple change that just un-stubs our implementation of the checkValidity() method for HTMLTextAreaElement.
This commit is contained in:
committed by
Tim Ledbetter
parent
e79319ad85
commit
2d7080ecb3
@@ -247,8 +247,7 @@ bool HTMLTextAreaElement::will_validate()
|
|||||||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity
|
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity
|
||||||
bool HTMLTextAreaElement::check_validity()
|
bool HTMLTextAreaElement::check_validity()
|
||||||
{
|
{
|
||||||
dbgln("(STUBBED) HTMLTextAreaElement::check_validity(). Called on: {}", debug_description());
|
return check_validity_steps();
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-reportvalidity
|
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-reportvalidity
|
||||||
|
|||||||
@@ -2,8 +2,8 @@ Harness status: OK
|
|||||||
|
|
||||||
Found 130 tests
|
Found 130 tests
|
||||||
|
|
||||||
75 Pass
|
76 Pass
|
||||||
55 Fail
|
54 Fail
|
||||||
Pass [INPUT in TEXT status] no constraint
|
Pass [INPUT in TEXT status] no constraint
|
||||||
Pass [INPUT in TEXT status] no constraint (in a form)
|
Pass [INPUT in TEXT status] no constraint (in a form)
|
||||||
Pass [INPUT in TEXT status] not suffering from being too long
|
Pass [INPUT in TEXT status] not suffering from being too long
|
||||||
@@ -132,5 +132,5 @@ Fail [select] suffering from being missing
|
|||||||
Pass [select] suffering from being missing (in a form)
|
Pass [select] suffering from being missing (in a form)
|
||||||
Pass [textarea] no constraint
|
Pass [textarea] no constraint
|
||||||
Pass [textarea] no constraint (in a form)
|
Pass [textarea] no constraint (in a form)
|
||||||
Fail [textarea] suffering from being missing
|
Pass [textarea] suffering from being missing
|
||||||
Pass [textarea] suffering from being missing (in a form)
|
Pass [textarea] suffering from being missing (in a form)
|
||||||
Reference in New Issue
Block a user