Software: Apache. PHP/8.1.30 uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root) Safe-mode: OFF (not secure) /usr/share/nodejs/jsdom/lib/jsdom/living/constraint-validation/ drwxr-xr-x |
Viewing file: Select action/file-type: "use strict"; exports.implementation = class ValidityStateImpl { constructor(globalObject, args, privateData) { const { element, state = {} } = privateData; this._element = element; this._state = state; } get badInput() { return this._failsConstraint("badInput"); } // https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#suffering-from-a-custom-error get customError() { return this._element._customValidityErrorMessage !== ""; } get patternMismatch() { return this._failsConstraint("patternMismatch"); } get rangeOverflow() { return this._failsConstraint("rangeOverflow"); } get rangeUnderflow() { return this._failsConstraint("rangeUnderflow"); } get stepMismatch() { return this._failsConstraint("stepMismatch"); } get tooLong() { return this._failsConstraint("tooLong"); } get tooShort() { return this._failsConstraint("tooShort"); } get typeMismatch() { return this._failsConstraint("typeMismatch"); } get valueMissing() { return this._failsConstraint("valueMissing"); } _failsConstraint(method) { const validationMethod = this._state[method]; if (validationMethod) { return validationMethod(); } return false; } get valid() { return !(this.badInput || this.valueMissing || this.customError || this.patternMismatch || this.rangeOverflow || this.rangeUnderflow || this.stepMismatch || this.tooLong || this.tooShort || this.typeMismatch); } }; |
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0033 ]-- |