Web Components & Shadow DOM
What is the purpose of ElementInternals in Web Components?
class CustomInput extends HTMLElement {
constructor() {
super();
this._internals = this.attachInternals();
this._internals.setFormValue('');
this._internals.setValidity({
valueMissing: true
}, 'Please fill out this field.');
}
}