332
node_modules/jsdom/lib/generated/idl/HTMLFieldSetElement.js
generated
vendored
Normal file
332
node_modules/jsdom/lib/generated/idl/HTMLFieldSetElement.js
generated
vendored
Normal file
@@ -0,0 +1,332 @@
|
||||
"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 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 implSymbol = utils.implSymbol;
|
||||
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
||||
const HTMLElement = require("./HTMLElement.js");
|
||||
|
||||
const interfaceName = "HTMLFieldSetElement";
|
||||
|
||||
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 'HTMLFieldSetElement'.`);
|
||||
};
|
||||
|
||||
function makeWrapper(globalObject, newTarget) {
|
||||
let proto;
|
||||
if (newTarget !== undefined) {
|
||||
proto = newTarget.prototype;
|
||||
}
|
||||
|
||||
if (!utils.isObject(proto)) {
|
||||
proto = globalObject[ctorRegistrySymbol]["HTMLFieldSetElement"].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 HTMLFieldSetElement extends globalObject.HTMLElement {
|
||||
constructor() {
|
||||
return HTMLConstructor_jsdom_living_helpers_html_constructor(globalObject, interfaceName, new.target);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
if (arguments.length < 1) {
|
||||
throw new globalObject.TypeError(
|
||||
`Failed to execute 'setCustomValidity' on 'HTMLFieldSetElement': 1 argument required, but only ${arguments.length} present.`
|
||||
);
|
||||
}
|
||||
const args = [];
|
||||
{
|
||||
let curArg = arguments[0];
|
||||
curArg = conversions["DOMString"](curArg, {
|
||||
context: "Failed to execute 'setCustomValidity' on 'HTMLFieldSetElement': parameter 1",
|
||||
globals: globalObject
|
||||
});
|
||||
args.push(curArg);
|
||||
}
|
||||
return esValue[implSymbol].setCustomValidity(...args);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
V = conversions["boolean"](V, {
|
||||
context: "Failed to set the 'disabled' property on 'HTMLFieldSetElement': 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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
return utils.tryWrapperForImpl(esValue[implSymbol]["form"]);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
V = conversions["DOMString"](V, {
|
||||
context: "Failed to set the 'name' property on 'HTMLFieldSetElement': 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 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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
return esValue[implSymbol]["type"];
|
||||
}
|
||||
|
||||
get elements() {
|
||||
const esValue = this !== null && this !== undefined ? this : globalObject;
|
||||
|
||||
if (!exports.is(esValue)) {
|
||||
throw new globalObject.TypeError(
|
||||
"'get elements' called on an object that is not a valid instance of HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
return utils.getSameObject(this, "elements", () => {
|
||||
return utils.tryWrapperForImpl(esValue[implSymbol]["elements"]);
|
||||
});
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
return utils.getSameObject(this, "validity", () => {
|
||||
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 HTMLFieldSetElement."
|
||||
);
|
||||
}
|
||||
|
||||
return esValue[implSymbol]["validationMessage"];
|
||||
}
|
||||
}
|
||||
Object.defineProperties(HTMLFieldSetElement.prototype, {
|
||||
checkValidity: { enumerable: true },
|
||||
reportValidity: { enumerable: true },
|
||||
setCustomValidity: { enumerable: true },
|
||||
disabled: { enumerable: true },
|
||||
form: { enumerable: true },
|
||||
name: { enumerable: true },
|
||||
type: { enumerable: true },
|
||||
elements: { enumerable: true },
|
||||
willValidate: { enumerable: true },
|
||||
validity: { enumerable: true },
|
||||
validationMessage: { enumerable: true },
|
||||
[Symbol.toStringTag]: { value: "HTMLFieldSetElement", configurable: true }
|
||||
});
|
||||
ctorRegistry[interfaceName] = HTMLFieldSetElement;
|
||||
|
||||
Object.defineProperty(globalObject, interfaceName, {
|
||||
configurable: true,
|
||||
writable: true,
|
||||
value: HTMLFieldSetElement
|
||||
});
|
||||
};
|
||||
|
||||
const Impl = require("../../jsdom/living/nodes/HTMLFieldSetElement-impl.js");
|
||||
Reference in New Issue
Block a user