700 lines
22 KiB
JavaScript
700 lines
22 KiB
JavaScript
"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 implSymbol = utils.implSymbol;
|
|
const ctorRegistrySymbol = utils.ctorRegistrySymbol;
|
|
const HTMLElement = require("./HTMLElement.js");
|
|
|
|
const interfaceName = "HTMLTableCellElement";
|
|
|
|
exports.is = value => {
|
|
return utils.isObject(value) && utils.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 'HTMLTableCellElement'.`);
|
|
};
|
|
|
|
function makeWrapper(globalObject, newTarget) {
|
|
let proto;
|
|
if (newTarget !== undefined) {
|
|
proto = newTarget.prototype;
|
|
}
|
|
|
|
if (!utils.isObject(proto)) {
|
|
proto = globalObject[ctorRegistrySymbol]["HTMLTableCellElement"].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 HTMLTableCellElement extends globalObject.HTMLElement {
|
|
constructor() {
|
|
return HTMLConstructor_helpers_html_constructor(globalObject, interfaceName, new.target);
|
|
}
|
|
|
|
get colSpan() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get colSpan' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
return esValue[implSymbol]["colSpan"];
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set colSpan(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set colSpan' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["unsigned long"](V, {
|
|
context: "Failed to set the 'colSpan' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]["colSpan"] = V;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get rowSpan() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get rowSpan' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
return esValue[implSymbol]["rowSpan"];
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set rowSpan(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set rowSpan' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["unsigned long"](V, {
|
|
context: "Failed to set the 'rowSpan' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]["rowSpan"] = V;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get headers() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get headers' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("headers");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set headers(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set headers' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'headers' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("headers", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get cellIndex() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get cellIndex' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
return esValue[implSymbol]["cellIndex"];
|
|
}
|
|
|
|
get scope() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get scope' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
return esValue[implSymbol]["scope"];
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set scope(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set scope' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'scope' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]["scope"] = V;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get abbr() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get abbr' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("abbr");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set abbr(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set abbr' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'abbr' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("abbr", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
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 HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("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 globalObject.TypeError(
|
|
"'set align' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'align' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("align", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get axis() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get axis' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("axis");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set axis(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set axis' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'axis' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("axis", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get height() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get height' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("height");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set height(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set height' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'height' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("height", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get width() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get width' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("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 globalObject.TypeError(
|
|
"'set width' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'width' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("width", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get ch() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get ch' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("char");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set ch(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set ch' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'ch' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("char", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get chOff() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get chOff' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("charoff");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set chOff(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set chOff' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'chOff' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("charoff", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get noWrap() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get noWrap' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
return esValue[implSymbol]._reflectGetTheContentAttribute("nowrap") !== null;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set noWrap(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set noWrap' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["boolean"](V, {
|
|
context: "Failed to set the 'noWrap' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
if (V) {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("nowrap", "");
|
|
} else {
|
|
esValue[implSymbol]._reflectDeleteTheContentAttribute("nowrap");
|
|
}
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get vAlign() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get vAlign' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("valign");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set vAlign(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set vAlign' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'vAlign' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("valign", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get bgColor() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get bgColor' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("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 globalObject.TypeError(
|
|
"'set bgColor' called on an object that is not a valid instance of HTMLTableCellElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'bgColor' property on 'HTMLTableCellElement': The provided value",
|
|
globals: globalObject,
|
|
treatNullAsEmptyString: true
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("bgcolor", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
}
|
|
Object.defineProperties(HTMLTableCellElement.prototype, {
|
|
colSpan: { enumerable: true },
|
|
rowSpan: { enumerable: true },
|
|
headers: { enumerable: true },
|
|
cellIndex: { enumerable: true },
|
|
scope: { enumerable: true },
|
|
abbr: { enumerable: true },
|
|
align: { enumerable: true },
|
|
axis: { enumerable: true },
|
|
height: { enumerable: true },
|
|
width: { enumerable: true },
|
|
ch: { enumerable: true },
|
|
chOff: { enumerable: true },
|
|
noWrap: { enumerable: true },
|
|
vAlign: { enumerable: true },
|
|
bgColor: { enumerable: true },
|
|
[Symbol.toStringTag]: { value: "HTMLTableCellElement", configurable: true }
|
|
});
|
|
ctorRegistry[interfaceName] = HTMLTableCellElement;
|
|
|
|
Object.defineProperty(globalObject, interfaceName, {
|
|
configurable: true,
|
|
writable: true,
|
|
value: HTMLTableCellElement
|
|
});
|
|
};
|
|
|
|
const Impl = require("../nodes/HTMLTableCellElement-impl.js");
|