blob: 41b7d8f56bd0d440ed17dab98d14313e4e69b843 [file] [log] [blame]
"use strict";
const conversions = require("webidl-conversions");
const utils = require("./utils.js");
const HTMLConstructor_helpers_html_constructor = require("../helpers/html-constructor.js").HTMLConstructor;
const ceReactionsPreSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPreSteps;
const ceReactionsPostSteps_helpers_custom_elements = require("../helpers/custom-elements.js").ceReactionsPostSteps;
const HTMLTableCaptionElement = require("./HTMLTableCaptionElement.js");
const HTMLTableSectionElement = require("./HTMLTableSectionElement.js");
const implSymbol = utils.implSymbol;
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
const HTMLElement = require("./HTMLElement.js");
const interfaceName = "HTMLTableElement";
exports.is = function is(obj) {
return utils.isObject(obj) && utils.hasOwn(obj, implSymbol) && obj[implSymbol] instanceof Impl.implementation;
};
exports.isImpl = function isImpl(obj) {
return utils.isObject(obj) && obj instanceof Impl.implementation;
};
exports.convert = function convert(obj, { context = "The provided value" } = {}) {
if (exports.is(obj)) {
return utils.implForWrapper(obj);
}
throw new TypeError(`${context} is not of type 'HTMLTableElement'.`);
};
exports.create = function create(globalObject, constructorArgs, privateData) {
if (globalObject[ctorRegistrySymbol] === undefined) {
throw new Error("Internal error: invalid global object");
}
const ctor = globalObject[ctorRegistrySymbol]["HTMLTableElement"];
if (ctor === undefined) {
throw new Error("Internal error: constructor HTMLTableElement is not installed on the passed global object");
}
let obj = Object.create(ctor.prototype);
obj = exports.setup(obj, globalObject, constructorArgs, privateData);
return obj;
};
exports.createImpl = function createImpl(globalObject, constructorArgs, privateData) {
const obj = exports.create(globalObject, constructorArgs, privateData);
return utils.implForWrapper(obj);
};
exports._internalSetup = function _internalSetup(obj, globalObject) {
HTMLElement._internalSetup(obj, globalObject);
};
exports.setup = function setup(obj, globalObject, constructorArgs = [], privateData = {}) {
privateData.wrapper = obj;
exports._internalSetup(obj, globalObject);
Object.defineProperty(obj, implSymbol, {
value: new Impl.implementation(globalObject, constructorArgs, privateData),
configurable: true
});
obj[implSymbol][utils.wrapperSymbol] = obj;
if (Impl.init) {
Impl.init(obj[implSymbol], privateData);
}
return obj;
};
exports.install = function install(globalObject) {
if (globalObject.HTMLElement === undefined) {
throw new Error("Internal error: attempting to evaluate HTMLTableElement before HTMLElement");
}
class HTMLTableElement extends globalObject.HTMLElement {
constructor() {
return HTMLConstructor_helpers_html_constructor(globalObject, interfaceName, new.target);
}
createCaption() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol].createCaption());
}
deleteCaption() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol].deleteCaption();
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
createTHead() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol].createTHead());
}
deleteTHead() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol].deleteTHead();
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
createTFoot() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol].createTFoot());
}
deleteTFoot() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol].deleteTFoot();
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
createTBody() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol].createTBody());
}
insertRow() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
const args = [];
{
let curArg = arguments[0];
if (curArg !== undefined) {
curArg = conversions["long"](curArg, {
context: "Failed to execute 'insertRow' on 'HTMLTableElement': parameter 1"
});
} else {
curArg = -1;
}
args.push(curArg);
}
return utils.tryWrapperForImpl(esValue[implSymbol].insertRow(...args));
}
deleteRow(index) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
if (arguments.length < 1) {
throw new TypeError(
"Failed to execute 'deleteRow' on 'HTMLTableElement': 1 argument required, but only " +
arguments.length +
" present."
);
}
const args = [];
{
let curArg = arguments[0];
curArg = conversions["long"](curArg, {
context: "Failed to execute 'deleteRow' on 'HTMLTableElement': parameter 1"
});
args.push(curArg);
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return esValue[implSymbol].deleteRow(...args);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get caption() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return utils.tryWrapperForImpl(esValue[implSymbol]["caption"]);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set caption(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
if (V === null || V === undefined) {
V = null;
} else {
V = HTMLTableCaptionElement.convert(V, {
context: "Failed to set the 'caption' property on 'HTMLTableElement': The provided value"
});
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]["caption"] = V;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get tHead() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return utils.tryWrapperForImpl(esValue[implSymbol]["tHead"]);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set tHead(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
if (V === null || V === undefined) {
V = null;
} else {
V = HTMLTableSectionElement.convert(V, {
context: "Failed to set the 'tHead' property on 'HTMLTableElement': The provided value"
});
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]["tHead"] = V;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get tFoot() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
return utils.tryWrapperForImpl(esValue[implSymbol]["tFoot"]);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set tFoot(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
if (V === null || V === undefined) {
V = null;
} else {
V = HTMLTableSectionElement.convert(V, {
context: "Failed to set the 'tFoot' property on 'HTMLTableElement': The provided value"
});
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol]["tFoot"] = V;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get tBodies() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.getSameObject(this, "tBodies", () => {
return utils.tryWrapperForImpl(esValue[implSymbol]["tBodies"]);
});
}
get rows() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.getSameObject(this, "rows", () => {
return utils.tryWrapperForImpl(esValue[implSymbol]["rows"]);
});
}
get align() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "align");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set align(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'align' property on 'HTMLTableElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "align", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get border() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "border");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set border(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'border' property on 'HTMLTableElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "border", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get frame() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "frame");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set frame(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'frame' property on 'HTMLTableElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "frame", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get rules() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "rules");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set rules(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'rules' property on 'HTMLTableElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "rules", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get summary() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "summary");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set summary(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'summary' property on 'HTMLTableElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "summary", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get width() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "width");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set width(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'width' property on 'HTMLTableElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "width", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get bgColor() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "bgcolor");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set bgColor(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'bgColor' property on 'HTMLTableElement': The provided value",
treatNullAsEmptyString: true
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "bgcolor", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get cellPadding() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "cellpadding");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set cellPadding(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'cellPadding' property on 'HTMLTableElement': The provided value",
treatNullAsEmptyString: true
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "cellpadding", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get cellSpacing() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
const value = esValue[implSymbol].getAttributeNS(null, "cellspacing");
return value === null ? "" : value;
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set cellSpacing(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'cellSpacing' property on 'HTMLTableElement': The provided value",
treatNullAsEmptyString: true
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "cellspacing", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
}
Object.defineProperties(HTMLTableElement.prototype, {
createCaption: { enumerable: true },
deleteCaption: { enumerable: true },
createTHead: { enumerable: true },
deleteTHead: { enumerable: true },
createTFoot: { enumerable: true },
deleteTFoot: { enumerable: true },
createTBody: { enumerable: true },
insertRow: { enumerable: true },
deleteRow: { enumerable: true },
caption: { enumerable: true },
tHead: { enumerable: true },
tFoot: { enumerable: true },
tBodies: { enumerable: true },
rows: { enumerable: true },
align: { enumerable: true },
border: { enumerable: true },
frame: { enumerable: true },
rules: { enumerable: true },
summary: { enumerable: true },
width: { enumerable: true },
bgColor: { enumerable: true },
cellPadding: { enumerable: true },
cellSpacing: { enumerable: true },
[Symbol.toStringTag]: { value: "HTMLTableElement", configurable: true }
});
if (globalObject[ctorRegistrySymbol] === undefined) {
globalObject[ctorRegistrySymbol] = Object.create(null);
}
globalObject[ctorRegistrySymbol][interfaceName] = HTMLTableElement;
Object.defineProperty(globalObject, interfaceName, {
configurable: true,
writable: true,
value: HTMLTableElement
});
};
const Impl = require("../nodes/HTMLTableElement-impl.js");