mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02: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
Notes:
github-actions[bot]
2025-02-26 06:53:54 +00:00
Author: https://github.com/sideshowbarker Commit: https://github.com/LadybirdBrowser/ladybird/commit/2d7080ecb34 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3699 Reviewed-by: https://github.com/tcl3 ✅
@@ -247,8 +247,7 @@ bool HTMLTextAreaElement::will_validate()
|
||||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-checkvalidity
|
||||
bool HTMLTextAreaElement::check_validity()
|
||||
{
|
||||
dbgln("(STUBBED) HTMLTextAreaElement::check_validity(). Called on: {}", debug_description());
|
||||
return true;
|
||||
return check_validity_steps();
|
||||
}
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#dom-cva-reportvalidity
|
||||
|
||||
Reference in New Issue
Block a user