snipe/web/node_modules/jsdom/lib/generated/idl/HTMLInputElement.js
pyr0ball 7a704441a6 feat(snipe): Vue 3 frontend scaffold + Docker web service
- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117)
- AppNav, ListingCard, SearchView with filters/sort, composables
  (useSnipeMode, useKonamiCode, useMotion), Pinia search store
- Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue
- docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve)
- compose.yml: api (8510) + web (8509) services
- Dockerfile CMD updated to uvicorn for upcoming FastAPI layer
- Clean build: 0 TS errors, 380 modules
2026-03-25 15:11:35 -07:00

1931 lines
64 KiB
JavaScript

"use strict";
const conversions = require("webidl-conversions");
const utils = require("./utils.js");
const HTMLConstructor_jsdom_living_helpers_html_constructor =
require("../../jsdom/living/helpers/html-constructor.js").HTMLConstructor;
const SelectionMode = require("./SelectionMode.js");
const ceReactionsPreSteps_jsdom_living_helpers_custom_elements =
require("../../jsdom/living/helpers/custom-elements.js").ceReactionsPreSteps;
const ceReactionsPostSteps_jsdom_living_helpers_custom_elements =
require("../../jsdom/living/helpers/custom-elements.js").ceReactionsPostSteps;
const FileList = require("./FileList.js");
const parseNonNegativeInteger_jsdom_living_helpers_strings =
require("../../jsdom/living/helpers/strings.js").parseNonNegativeInteger;
const create_DOMException = require("./DOMException.js").create;
const serializeURLwhatwg_url = require("whatwg-url").serializeURL;
const implSymbol = utils.implSymbol;
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
const HTMLElement = require("./HTMLElement.js");
const interfaceName = "HTMLInputElement";
exports.is = value => {
return utils.isObject(value) && Object.hasOwn(value, implSymbol) && value[implSymbol] instanceof Impl.implementation;
};
exports.isImpl = value => {
return utils.isObject(value) && value instanceof Impl.implementation;
};
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
if (exports.is(value)) {
return utils.implForWrapper(value);
}
throw new globalObject.TypeError(`${context} is not of type 'HTMLInputElement'.`);
};
function makeWrapper(globalObject, newTarget) {
let proto;
if (newTarget !== undefined) {
proto = newTarget.prototype;
}
if (!utils.isObject(proto)) {
proto = globalObject[ctorRegistrySymbol]["HTMLInputElement"].prototype;
}
return Object.create(proto);
}
exports.create = (globalObject, constructorArgs, privateData) => {
const wrapper = makeWrapper(globalObject);
return exports.setup(wrapper, globalObject, constructorArgs, privateData);
};
exports.createImpl = (globalObject, constructorArgs, privateData) => {
const wrapper = exports.create(globalObject, constructorArgs, privateData);
return utils.implForWrapper(wrapper);
};
exports._internalSetup = (wrapper, globalObject) => {
HTMLElement._internalSetup(wrapper, globalObject);
};
exports.setup = (wrapper, globalObject, constructorArgs = [], privateData = {}) => {
privateData.wrapper = wrapper;
exports._internalSetup(wrapper, globalObject);
Object.defineProperty(wrapper, implSymbol, {
value: new Impl.implementation(globalObject, constructorArgs, privateData),
configurable: true
});
wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
if (Impl.init) {
Impl.init(wrapper[implSymbol]);
}
return wrapper;
};
exports.new = (globalObject, newTarget) => {
const wrapper = makeWrapper(globalObject, newTarget);
exports._internalSetup(wrapper, globalObject);
Object.defineProperty(wrapper, implSymbol, {
value: Object.create(Impl.implementation.prototype),
configurable: true
});
wrapper[implSymbol][utils.wrapperSymbol] = wrapper;
if (Impl.init) {
Impl.init(wrapper[implSymbol]);
}
return wrapper[implSymbol];
};
const exposed = new Set(["Window"]);
exports.install = (globalObject, globalNames) => {
if (!globalNames.some(globalName => exposed.has(globalName))) {
return;
}
const ctorRegistry = utils.initCtorRegistry(globalObject);
class HTMLInputElement extends globalObject.HTMLElement {
constructor() {
return HTMLConstructor_jsdom_living_helpers_html_constructor(globalObject, interfaceName, new.target);
}
stepUp() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'stepUp' called on an object that is not a valid instance of HTMLInputElement."
);
}
const args = [];
{
let curArg = arguments[0];
if (curArg !== undefined) {
curArg = conversions["long"](curArg, {
context: "Failed to execute 'stepUp' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
} else {
curArg = 1;
}
args.push(curArg);
}
return esValue[implSymbol].stepUp(...args);
}
stepDown() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'stepDown' called on an object that is not a valid instance of HTMLInputElement."
);
}
const args = [];
{
let curArg = arguments[0];
if (curArg !== undefined) {
curArg = conversions["long"](curArg, {
context: "Failed to execute 'stepDown' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
} else {
curArg = 1;
}
args.push(curArg);
}
return esValue[implSymbol].stepDown(...args);
}
checkValidity() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'checkValidity' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol].checkValidity();
}
reportValidity() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'reportValidity' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol].reportValidity();
}
setCustomValidity(error) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'setCustomValidity' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (arguments.length < 1) {
throw new globalObject.TypeError(
`Failed to execute 'setCustomValidity' on 'HTMLInputElement': 1 argument required, but only ${arguments.length} present.`
);
}
const args = [];
{
let curArg = arguments[0];
curArg = conversions["DOMString"](curArg, {
context: "Failed to execute 'setCustomValidity' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
args.push(curArg);
}
return esValue[implSymbol].setCustomValidity(...args);
}
select() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'select' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol].select();
}
setRangeText(replacement) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'setRangeText' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (arguments.length < 1) {
throw new globalObject.TypeError(
`Failed to execute 'setRangeText' on 'HTMLInputElement': 1 argument required, but only ${arguments.length} present.`
);
}
const args = [];
switch (arguments.length) {
case 1:
{
let curArg = arguments[0];
curArg = conversions["DOMString"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
args.push(curArg);
}
break;
case 2:
throw new globalObject.TypeError(
`Failed to execute 'setRangeText' on 'HTMLInputElement': only ${arguments.length} arguments present.`
);
break;
case 3:
{
let curArg = arguments[0];
curArg = conversions["DOMString"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[1];
curArg = conversions["unsigned long"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 2",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[2];
curArg = conversions["unsigned long"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 3",
globals: globalObject
});
args.push(curArg);
}
break;
default:
{
let curArg = arguments[0];
curArg = conversions["DOMString"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[1];
curArg = conversions["unsigned long"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 2",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[2];
curArg = conversions["unsigned long"](curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 3",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[3];
if (curArg !== undefined) {
curArg = SelectionMode.convert(globalObject, curArg, {
context: "Failed to execute 'setRangeText' on 'HTMLInputElement': parameter 4"
});
} else {
curArg = "preserve";
}
args.push(curArg);
}
}
return esValue[implSymbol].setRangeText(...args);
}
setSelectionRange(start, end) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'setSelectionRange' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (arguments.length < 2) {
throw new globalObject.TypeError(
`Failed to execute 'setSelectionRange' on 'HTMLInputElement': 2 arguments required, but only ${arguments.length} present.`
);
}
const args = [];
{
let curArg = arguments[0];
curArg = conversions["unsigned long"](curArg, {
context: "Failed to execute 'setSelectionRange' on 'HTMLInputElement': parameter 1",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[1];
curArg = conversions["unsigned long"](curArg, {
context: "Failed to execute 'setSelectionRange' on 'HTMLInputElement': parameter 2",
globals: globalObject
});
args.push(curArg);
}
{
let curArg = arguments[2];
if (curArg !== undefined) {
curArg = conversions["DOMString"](curArg, {
context: "Failed to execute 'setSelectionRange' on 'HTMLInputElement': parameter 3",
globals: globalObject
});
}
args.push(curArg);
}
return esValue[implSymbol].setSelectionRange(...args);
}
get accept() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get accept' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("accept");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set accept(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set accept' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'accept' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("accept", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get alt() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get alt' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("alt");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set alt(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set alt' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'alt' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("alt", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get autocomplete() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get autocomplete' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("autocomplete");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set autocomplete(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set autocomplete' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'autocomplete' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("autocomplete", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get autofocus() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get autofocus' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("autofocus") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set autofocus(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set autofocus' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'autofocus' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("autofocus", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("autofocus");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get defaultChecked() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get defaultChecked' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("checked") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set defaultChecked(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set defaultChecked' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'defaultChecked' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("checked", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("checked");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get checked() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get checked' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["checked"];
}
set checked(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set checked' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'checked' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
esValue[implSymbol]["checked"] = V;
}
get dirName() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get dirName' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("dirname");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set dirName(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set dirName' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'dirName' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("dirname", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get disabled() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get disabled' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("disabled") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set disabled(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set disabled' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'disabled' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("disabled", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("disabled");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get form() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get form' called on an object that is not a valid instance of HTMLInputElement."
);
}
return utils.tryWrapperForImpl(esValue[implSymbol]["form"]);
}
get files() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get files' called on an object that is not a valid instance of HTMLInputElement."
);
}
return utils.tryWrapperForImpl(esValue[implSymbol]["files"]);
}
set files(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set files' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (V === null || V === undefined) {
V = null;
} else {
V = FileList.convert(globalObject, V, {
context: "Failed to set the 'files' property on 'HTMLInputElement': The provided value"
});
}
esValue[implSymbol]["files"] = V;
}
get formNoValidate() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get formNoValidate' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("formnovalidate") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set formNoValidate(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set formNoValidate' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'formNoValidate' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("formnovalidate", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("formnovalidate");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get formTarget() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get formTarget' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("formtarget");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set formTarget(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set formTarget' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'formTarget' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("formtarget", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get indeterminate() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get indeterminate' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["indeterminate"];
}
set indeterminate(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set indeterminate' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'indeterminate' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
esValue[implSymbol]["indeterminate"] = V;
}
get inputMode() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get inputMode' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("inputmode");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set inputMode(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set inputMode' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'inputMode' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("inputmode", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get list() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get list' called on an object that is not a valid instance of HTMLInputElement."
);
}
return utils.tryWrapperForImpl(esValue[implSymbol]["list"]);
}
get max() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get max' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("max");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set max(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set max' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'max' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("max", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get maxLength() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get maxLength' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
let value = esValue[implSymbol]._reflectGetTheContentAttribute("maxlength");
if (value !== null) {
value = parseNonNegativeInteger_jsdom_living_helpers_strings(value);
if (value !== null && conversions.long(value) === value) {
return value;
}
}
return -1;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set maxLength(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set maxLength' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["long"](V, {
context: "Failed to set the 'maxLength' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V < 0) {
throw create_DOMException(globalObject, [
`The negative value ${V} cannot be set for the maxLength property.`,
"IndexSizeError"
]);
}
esValue[implSymbol]._reflectSetTheContentAttribute("maxlength", String(V));
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get min() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get min' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("min");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set min(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set min' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'min' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("min", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get minLength() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get minLength' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
let value = esValue[implSymbol]._reflectGetTheContentAttribute("minlength");
if (value !== null) {
value = parseNonNegativeInteger_jsdom_living_helpers_strings(value);
if (value !== null && conversions.long(value) === value) {
return value;
}
}
return -1;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set minLength(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set minLength' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["long"](V, {
context: "Failed to set the 'minLength' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V < 0) {
throw create_DOMException(globalObject, [
`The negative value ${V} cannot be set for the minLength property.`,
"IndexSizeError"
]);
}
esValue[implSymbol]._reflectSetTheContentAttribute("minlength", String(V));
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get multiple() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get multiple' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("multiple") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set multiple(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set multiple' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'multiple' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("multiple", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("multiple");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get name() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get name' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("name");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set name(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set name' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'name' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("name", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get pattern() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get pattern' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("pattern");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set pattern(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set pattern' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'pattern' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("pattern", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get placeholder() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get placeholder' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("placeholder");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set placeholder(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set placeholder' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'placeholder' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("placeholder", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get readOnly() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get readOnly' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("readonly") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set readOnly(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set readOnly' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'readOnly' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("readonly", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("readonly");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get required() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get required' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]._reflectGetTheContentAttribute("required") !== null;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set required(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set required' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["boolean"](V, {
context: "Failed to set the 'required' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol]._reflectSetTheContentAttribute("required", "");
} else {
esValue[implSymbol]._reflectDeleteTheContentAttribute("required");
}
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get size() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get size' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
let value = esValue[implSymbol]._reflectGetTheContentAttribute("size");
if (value !== null) {
value = parseNonNegativeInteger_jsdom_living_helpers_strings(value);
if (value !== null && value >= 1 && value <= 2147483647) {
return value;
}
}
return 20;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set size(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set size' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["unsigned long"](V, {
context: "Failed to set the 'size' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
if (V === 0) {
throw create_DOMException(globalObject, [
`The value ${V} cannot be set for the size property.`,
"IndexSizeError"
]);
}
const newValue = V <= 2147483647 && V >= 1 ? V : 20;
esValue[implSymbol]._reflectSetTheContentAttribute("size", String(newValue));
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get src() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get src' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const impl = esValue[implSymbol];
const value = impl._reflectGetTheContentAttribute("src");
if (value === null) {
return "";
}
const document = impl._ownerDocument;
if (this._srcURLCacheKey === value && this._baseURLCache === document._baseURLCache) {
return this._srcURLCache;
}
this._srcURLCacheKey = value;
this._baseURLCache = document._baseURLCache;
const urlRecord = document.encodingParseAURL(value);
if (urlRecord !== null) {
this._srcURLCache = serializeURLwhatwg_url(urlRecord);
return this._srcURLCache;
}
this._srcURLCache = conversions.USVString(value);
return this._srcURLCache;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set src(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set src' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["USVString"](V, {
context: "Failed to set the 'src' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("src", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get step() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get step' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("step");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set step(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set step' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'step' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("step", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get type() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get type' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]["type"];
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set type(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set type' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'type' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]["type"] = V;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get defaultValue() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get defaultValue' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("value");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set defaultValue(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set defaultValue' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'defaultValue' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("value", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get value() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get value' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol]["value"];
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set value(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set value' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'value' property on 'HTMLInputElement': The provided value",
globals: globalObject,
treatNullAsEmptyString: true
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]["value"] = V;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get valueAsDate() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get valueAsDate' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["valueAsDate"];
}
set valueAsDate(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set valueAsDate' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (V === null || V === undefined) {
V = null;
} else {
V = conversions["object"](V, {
context: "Failed to set the 'valueAsDate' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
}
esValue[implSymbol]["valueAsDate"] = V;
}
get valueAsNumber() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get valueAsNumber' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["valueAsNumber"];
}
set valueAsNumber(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set valueAsNumber' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["unrestricted double"](V, {
context: "Failed to set the 'valueAsNumber' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
esValue[implSymbol]["valueAsNumber"] = V;
}
get willValidate() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get willValidate' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["willValidate"];
}
get validity() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get validity' called on an object that is not a valid instance of HTMLInputElement."
);
}
return utils.tryWrapperForImpl(esValue[implSymbol]["validity"]);
}
get validationMessage() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get validationMessage' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["validationMessage"];
}
get labels() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get labels' called on an object that is not a valid instance of HTMLInputElement."
);
}
return utils.tryWrapperForImpl(esValue[implSymbol]["labels"]);
}
get selectionStart() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get selectionStart' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["selectionStart"];
}
set selectionStart(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set selectionStart' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (V === null || V === undefined) {
V = null;
} else {
V = conversions["unsigned long"](V, {
context: "Failed to set the 'selectionStart' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
}
esValue[implSymbol]["selectionStart"] = V;
}
get selectionEnd() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get selectionEnd' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["selectionEnd"];
}
set selectionEnd(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set selectionEnd' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (V === null || V === undefined) {
V = null;
} else {
V = conversions["unsigned long"](V, {
context: "Failed to set the 'selectionEnd' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
}
esValue[implSymbol]["selectionEnd"] = V;
}
get selectionDirection() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get selectionDirection' called on an object that is not a valid instance of HTMLInputElement."
);
}
return esValue[implSymbol]["selectionDirection"];
}
set selectionDirection(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set selectionDirection' called on an object that is not a valid instance of HTMLInputElement."
);
}
if (V === null || V === undefined) {
V = null;
} else {
V = conversions["DOMString"](V, {
context: "Failed to set the 'selectionDirection' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
}
esValue[implSymbol]["selectionDirection"] = V;
}
get align() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get align' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("align");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set align(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set align' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'align' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("align", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
get useMap() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'get useMap' called on an object that is not a valid instance of HTMLInputElement."
);
}
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol]._reflectGetTheContentAttribute("usemap");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
set useMap(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new globalObject.TypeError(
"'set useMap' called on an object that is not a valid instance of HTMLInputElement."
);
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'useMap' property on 'HTMLInputElement': The provided value",
globals: globalObject
});
ceReactionsPreSteps_jsdom_living_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]._reflectSetTheContentAttribute("usemap", V);
} finally {
ceReactionsPostSteps_jsdom_living_helpers_custom_elements(globalObject);
}
}
}
Object.defineProperties(HTMLInputElement.prototype, {
stepUp: { enumerable: true },
stepDown: { enumerable: true },
checkValidity: { enumerable: true },
reportValidity: { enumerable: true },
setCustomValidity: { enumerable: true },
select: { enumerable: true },
setRangeText: { enumerable: true },
setSelectionRange: { enumerable: true },
accept: { enumerable: true },
alt: { enumerable: true },
autocomplete: { enumerable: true },
autofocus: { enumerable: true },
defaultChecked: { enumerable: true },
checked: { enumerable: true },
dirName: { enumerable: true },
disabled: { enumerable: true },
form: { enumerable: true },
files: { enumerable: true },
formNoValidate: { enumerable: true },
formTarget: { enumerable: true },
indeterminate: { enumerable: true },
inputMode: { enumerable: true },
list: { enumerable: true },
max: { enumerable: true },
maxLength: { enumerable: true },
min: { enumerable: true },
minLength: { enumerable: true },
multiple: { enumerable: true },
name: { enumerable: true },
pattern: { enumerable: true },
placeholder: { enumerable: true },
readOnly: { enumerable: true },
required: { enumerable: true },
size: { enumerable: true },
src: { enumerable: true },
step: { enumerable: true },
type: { enumerable: true },
defaultValue: { enumerable: true },
value: { enumerable: true },
valueAsDate: { enumerable: true },
valueAsNumber: { enumerable: true },
willValidate: { enumerable: true },
validity: { enumerable: true },
validationMessage: { enumerable: true },
labels: { enumerable: true },
selectionStart: { enumerable: true },
selectionEnd: { enumerable: true },
selectionDirection: { enumerable: true },
align: { enumerable: true },
useMap: { enumerable: true },
[Symbol.toStringTag]: { value: "HTMLInputElement", configurable: true }
});
ctorRegistry[interfaceName] = HTMLInputElement;
Object.defineProperty(globalObject, interfaceName, {
configurable: true,
writable: true,
value: HTMLInputElement
});
};
const Impl = require("../../jsdom/living/nodes/HTMLInputElement-impl.js");