670 lines
22 KiB
JavaScript
670 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 parseURLToResultingURLRecord_helpers_document_base_url =
|
|
require("../helpers/document-base-url.js").parseURLToResultingURLRecord;
|
|
const serializeURLwhatwg_url = require("whatwg-url").serializeURL;
|
|
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 = "HTMLIFrameElement";
|
|
|
|
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 'HTMLIFrameElement'.`);
|
|
};
|
|
|
|
function makeWrapper(globalObject, newTarget) {
|
|
let proto;
|
|
if (newTarget !== undefined) {
|
|
proto = newTarget.prototype;
|
|
}
|
|
|
|
if (!utils.isObject(proto)) {
|
|
proto = globalObject[ctorRegistrySymbol]["HTMLIFrameElement"].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 HTMLIFrameElement extends globalObject.HTMLElement {
|
|
constructor() {
|
|
return HTMLConstructor_helpers_html_constructor(globalObject, interfaceName, new.target);
|
|
}
|
|
|
|
getSVGDocument() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'getSVGDocument' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
return utils.tryWrapperForImpl(esValue[implSymbol].getSVGDocument());
|
|
}
|
|
|
|
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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("src");
|
|
if (value === null) {
|
|
return "";
|
|
}
|
|
const urlRecord = parseURLToResultingURLRecord_helpers_document_base_url(
|
|
value,
|
|
esValue[implSymbol]._ownerDocument
|
|
);
|
|
if (urlRecord !== null) {
|
|
return serializeURLwhatwg_url(urlRecord);
|
|
}
|
|
return conversions.USVString(value);
|
|
} finally {
|
|
ceReactionsPostSteps_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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["USVString"](V, {
|
|
context: "Failed to set the 'src' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("src", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get srcdoc() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get srcdoc' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("srcdoc");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set srcdoc(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set srcdoc' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'srcdoc' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("srcdoc", V);
|
|
} finally {
|
|
ceReactionsPostSteps_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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("name");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'name' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("name", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get allowFullscreen() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get allowFullscreen' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
return esValue[implSymbol]._reflectGetTheContentAttribute("allowfullscreen") !== null;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set allowFullscreen(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set allowFullscreen' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["boolean"](V, {
|
|
context: "Failed to set the 'allowFullscreen' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
if (V) {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("allowfullscreen", "");
|
|
} else {
|
|
esValue[implSymbol]._reflectDeleteTheContentAttribute("allowfullscreen");
|
|
}
|
|
} 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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'width' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("width", 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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'height' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("height", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get contentDocument() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get contentDocument' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
return utils.tryWrapperForImpl(esValue[implSymbol]["contentDocument"]);
|
|
}
|
|
|
|
get contentWindow() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get contentWindow' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
return utils.tryWrapperForImpl(esValue[implSymbol]["contentWindow"]);
|
|
}
|
|
|
|
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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
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 HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'align' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("align", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get scrolling() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get scrolling' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("scrolling");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set scrolling(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set scrolling' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'scrolling' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("scrolling", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get frameBorder() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get frameBorder' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("frameborder");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set frameBorder(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set frameBorder' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'frameBorder' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("frameborder", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get longDesc() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get longDesc' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("longdesc");
|
|
if (value === null) {
|
|
return "";
|
|
}
|
|
const urlRecord = parseURLToResultingURLRecord_helpers_document_base_url(
|
|
value,
|
|
esValue[implSymbol]._ownerDocument
|
|
);
|
|
if (urlRecord !== null) {
|
|
return serializeURLwhatwg_url(urlRecord);
|
|
}
|
|
return conversions.USVString(value);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set longDesc(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set longDesc' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["USVString"](V, {
|
|
context: "Failed to set the 'longDesc' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("longdesc", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get marginHeight() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get marginHeight' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("marginheight");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set marginHeight(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set marginHeight' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'marginHeight' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject,
|
|
treatNullAsEmptyString: true
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("marginheight", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
get marginWidth() {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'get marginWidth' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
const value = esValue[implSymbol]._reflectGetTheContentAttribute("marginwidth");
|
|
return value === null ? "" : value;
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
|
|
set marginWidth(V) {
|
|
const esValue = this !== null && this !== undefined ? this : globalObject;
|
|
|
|
if (!exports.is(esValue)) {
|
|
throw new globalObject.TypeError(
|
|
"'set marginWidth' called on an object that is not a valid instance of HTMLIFrameElement."
|
|
);
|
|
}
|
|
|
|
V = conversions["DOMString"](V, {
|
|
context: "Failed to set the 'marginWidth' property on 'HTMLIFrameElement': The provided value",
|
|
globals: globalObject,
|
|
treatNullAsEmptyString: true
|
|
});
|
|
|
|
ceReactionsPreSteps_helpers_custom_elements(globalObject);
|
|
try {
|
|
esValue[implSymbol]._reflectSetTheContentAttribute("marginwidth", V);
|
|
} finally {
|
|
ceReactionsPostSteps_helpers_custom_elements(globalObject);
|
|
}
|
|
}
|
|
}
|
|
Object.defineProperties(HTMLIFrameElement.prototype, {
|
|
getSVGDocument: { enumerable: true },
|
|
src: { enumerable: true },
|
|
srcdoc: { enumerable: true },
|
|
name: { enumerable: true },
|
|
allowFullscreen: { enumerable: true },
|
|
width: { enumerable: true },
|
|
height: { enumerable: true },
|
|
contentDocument: { enumerable: true },
|
|
contentWindow: { enumerable: true },
|
|
align: { enumerable: true },
|
|
scrolling: { enumerable: true },
|
|
frameBorder: { enumerable: true },
|
|
longDesc: { enumerable: true },
|
|
marginHeight: { enumerable: true },
|
|
marginWidth: { enumerable: true },
|
|
[Symbol.toStringTag]: { value: "HTMLIFrameElement", configurable: true }
|
|
});
|
|
ctorRegistry[interfaceName] = HTMLIFrameElement;
|
|
|
|
Object.defineProperty(globalObject, interfaceName, {
|
|
configurable: true,
|
|
writable: true,
|
|
value: HTMLIFrameElement
|
|
});
|
|
};
|
|
|
|
const Impl = require("../nodes/HTMLIFrameElement-impl.js");
|