blob: 28daaaf14678a90a5d0397ad6d2c3c2a86a9ff8e [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 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 = 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 'HTMLIFrameElement'.`);
};
exports.create = function create(globalObject, constructorArgs, privateData) {
if (globalObject[ctorRegistrySymbol] === undefined) {
throw new Error("Internal error: invalid global object");
}
const ctor = globalObject[ctorRegistrySymbol]["HTMLIFrameElement"];
if (ctor === undefined) {
throw new Error("Internal error: constructor HTMLIFrameElement 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 HTMLIFrameElement before HTMLElement");
}
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 TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol].getSVGDocument());
}
get src() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["USVString"](V, {
context: "Failed to set the 'src' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "src", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get srcdoc() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'srcdoc' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "srcdoc", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get name() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'name' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "name", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get allowFullscreen() {
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].hasAttributeNS(null, "allowfullscreen");
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
set allowFullscreen(V) {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
V = conversions["boolean"](V, {
context: "Failed to set the 'allowFullscreen' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
if (V) {
esValue[implSymbol].setAttributeNS(null, "allowfullscreen", "");
} else {
esValue[implSymbol].removeAttributeNS(null, "allowfullscreen");
}
} 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 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "width", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get height() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'height' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "height", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get contentDocument() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol]["contentDocument"]);
}
get contentWindow() {
const esValue = this !== null && this !== undefined ? this : globalObject;
if (!exports.is(esValue)) {
throw new TypeError("Illegal invocation");
}
return utils.tryWrapperForImpl(esValue[implSymbol]["contentWindow"]);
}
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 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "align", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get scrolling() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'scrolling' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "scrolling", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get frameBorder() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'frameBorder' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "frameborder", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get longDesc() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["USVString"](V, {
context: "Failed to set the 'longDesc' property on 'HTMLIFrameElement': The provided value"
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "longdesc", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get marginHeight() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'marginHeight' property on 'HTMLIFrameElement': The provided value",
treatNullAsEmptyString: true
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "marginheight", V);
} finally {
ceReactionsPostSteps_helpers_custom_elements(globalObject);
}
}
get marginWidth() {
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, "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 TypeError("Illegal invocation");
}
V = conversions["DOMString"](V, {
context: "Failed to set the 'marginWidth' property on 'HTMLIFrameElement': The provided value",
treatNullAsEmptyString: true
});
ceReactionsPreSteps_helpers_custom_elements(globalObject);
try {
esValue[implSymbol].setAttributeNS(null, "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 }
});
if (globalObject[ctorRegistrySymbol] === undefined) {
globalObject[ctorRegistrySymbol] = Object.create(null);
}
globalObject[ctorRegistrySymbol][interfaceName] = HTMLIFrameElement;
Object.defineProperty(globalObject, interfaceName, {
configurable: true,
writable: true,
value: HTMLIFrameElement
});
};
const Impl = require("../nodes/HTMLIFrameElement-impl.js");