Files
servo/components/script/dom/validation.rs
Tim van der Lippe c8029ea092 script: Rename CanGc::note() to CanGc::deprecated_note() (#44081)
Per the suggestion in

https://servo.zulipchat.com/#narrow/channel/263398-general/topic/PSA.3A.20avoid.20new.20usages.20of.20CanGc.20whenever.20possible/near/583995807
to mark this method as deprecated and make clear it shouldn't be used
anymore, as alternatives exist.

Part of #40600

Testing: It compiles

Signed-off-by: Tim van der Lippe <tvanderlippe@gmail.com>
2026-04-10 06:07:52 +00:00

119 lines
4.4 KiB
Rust
Executable File

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use js::context::JSContext;
use crate::dom::bindings::codegen::Bindings::HTMLElementBinding::HTMLElementMethods;
use crate::dom::bindings::codegen::Bindings::HTMLOrSVGElementBinding::FocusOptions;
use crate::dom::bindings::inheritance::Castable;
use crate::dom::bindings::root::DomRoot;
use crate::dom::bindings::str::DOMString;
use crate::dom::element::Element;
use crate::dom::eventtarget::EventTarget;
use crate::dom::html::htmldatalistelement::HTMLDataListElement;
use crate::dom::html::htmlelement::HTMLElement;
use crate::dom::node::Node;
use crate::dom::validitystate::{ValidationFlags, ValidityState};
use crate::script_runtime::CanGc;
/// Trait for elements with constraint validation support
pub(crate) trait Validatable {
fn as_element(&self) -> &Element;
/// <https://html.spec.whatwg.org/multipage/#dom-cva-validity>
fn validity_state(&self, can_gc: CanGc) -> DomRoot<ValidityState>;
/// <https://html.spec.whatwg.org/multipage/#candidate-for-constraint-validation>
fn is_instance_validatable(&self) -> bool;
// Check if element satisfies its constraints, excluding custom errors
fn perform_validation(
&self,
_validate_flags: ValidationFlags,
_can_gc: CanGc,
) -> ValidationFlags {
ValidationFlags::empty()
}
/// <https://html.spec.whatwg.org/multipage/#concept-fv-valid>
fn satisfies_constraints(&self, can_gc: CanGc) -> bool {
self.validity_state(can_gc).invalid_flags().is_empty()
}
/// <https://html.spec.whatwg.org/multipage/#check-validity-steps>
fn check_validity(&self, cx: &mut JSContext) -> bool {
if self.is_instance_validatable() && !self.satisfies_constraints(CanGc::from_cx(cx)) {
self.as_element()
.upcast::<EventTarget>()
.fire_cancelable_event(atom!("invalid"), CanGc::from_cx(cx));
false
} else {
true
}
}
/// <https://html.spec.whatwg.org/multipage/#report-validity-steps>
fn report_validity(&self, cx: &mut JSContext) -> bool {
// Step 1.
if !self.is_instance_validatable() {
return true;
}
if self.satisfies_constraints(CanGc::from_cx(cx)) {
return true;
}
// Step 1.1: Let `report` be the result of firing an event named invalid at element,
// with the cancelable attribute initialized to true.
let report = self
.as_element()
.upcast::<EventTarget>()
.fire_cancelable_event(atom!("invalid"), CanGc::from_cx(cx));
// Step 1.2. If `report` is true, for the element,
// report the problem, run focusing steps, scroll into view.
if report {
let flags = self.validity_state(CanGc::from_cx(cx)).invalid_flags();
println!(
"Validation error: {}",
validation_message_for_flags(&self.validity_state(CanGc::from_cx(cx)), flags)
);
if let Some(html_elem) = self.as_element().downcast::<HTMLElement>() {
// Run focusing steps and scroll into view.
html_elem.Focus(&FocusOptions::default(), CanGc::from_cx(cx));
}
}
// Step 1.3.
false
}
/// <https://html.spec.whatwg.org/multipage/#dom-cva-validationmessage>
fn validation_message(&self) -> DOMString {
if self.is_instance_validatable() {
let flags = self
.validity_state(CanGc::deprecated_note())
.invalid_flags();
validation_message_for_flags(&self.validity_state(CanGc::deprecated_note()), flags)
} else {
DOMString::new()
}
}
}
/// <https://html.spec.whatwg.org/multipage/#the-datalist-element%3Abarred-from-constraint-validation>
pub(crate) fn is_barred_by_datalist_ancestor(elem: &Node) -> bool {
elem.upcast::<Node>()
.ancestors()
.any(|node| node.is::<HTMLDataListElement>())
}
// Get message for given validation flags or custom error message
fn validation_message_for_flags(state: &ValidityState, failed_flags: ValidationFlags) -> DOMString {
if failed_flags.contains(ValidationFlags::CUSTOM_ERROR) {
state.custom_error_message().clone()
} else {
DOMString::from(failed_flags.to_string())
}
}