"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 parseURLToResultingURLRecord_helpers_document_base_url = require("../helpers/document-base-url.js").parseURLToResultingURLRecord; const serializeURLwhatwg_url = require("whatwg-url").serializeURL; const implSymbol = utils.implSymbol; const ctorRegistrySymbol = utils.ctorRegistrySymbol; const HTMLElement = require("./HTMLElement.js"); const interfaceName = "HTMLTrackElement"; 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 = (value, { context = "The provided value" } = {}) => { if (exports.is(value)) { return utils.implForWrapper(value); } throw new TypeError(`${context} is not of type 'HTMLTrackElement'.`); }; function makeWrapper(globalObject) { if (globalObject[ctorRegistrySymbol] === undefined) { throw new Error("Internal error: invalid global object"); } const ctor = globalObject[ctorRegistrySymbol]["HTMLTrackElement"]; if (ctor === undefined) { throw new Error("Internal error: constructor HTMLTrackElement is not installed on the passed global object"); } return Object.create(ctor.prototype); } 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 => { const wrapper = makeWrapper(globalObject); 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; } if (globalObject.HTMLElement === undefined) { throw new Error("Internal error: attempting to evaluate HTMLTrackElement before HTMLElement"); } class HTMLTrackElement extends globalObject.HTMLElement { constructor() { return HTMLConstructor_helpers_html_constructor(globalObject, interfaceName, new.target); } get kind() { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'get kind' called on an object that is not a valid instance of HTMLTrackElement."); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const value = esValue[implSymbol].getAttributeNS(null, "kind"); return value === null ? "" : value; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set kind(V) { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'set kind' called on an object that is not a valid instance of HTMLTrackElement."); } V = conversions["DOMString"](V, { context: "Failed to set the 'kind' property on 'HTMLTrackElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { esValue[implSymbol].setAttributeNS(null, "kind", V); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get src() { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'get src' called on an object that is not a valid instance of HTMLTrackElement."); } 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("'set src' called on an object that is not a valid instance of HTMLTrackElement."); } V = conversions["USVString"](V, { context: "Failed to set the 'src' property on 'HTMLTrackElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { esValue[implSymbol].setAttributeNS(null, "src", V); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get srclang() { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'get srclang' called on an object that is not a valid instance of HTMLTrackElement."); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const value = esValue[implSymbol].getAttributeNS(null, "srclang"); return value === null ? "" : value; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set srclang(V) { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'set srclang' called on an object that is not a valid instance of HTMLTrackElement."); } V = conversions["DOMString"](V, { context: "Failed to set the 'srclang' property on 'HTMLTrackElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { esValue[implSymbol].setAttributeNS(null, "srclang", V); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get label() { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'get label' called on an object that is not a valid instance of HTMLTrackElement."); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { const value = esValue[implSymbol].getAttributeNS(null, "label"); return value === null ? "" : value; } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set label(V) { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'set label' called on an object that is not a valid instance of HTMLTrackElement."); } V = conversions["DOMString"](V, { context: "Failed to set the 'label' property on 'HTMLTrackElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { esValue[implSymbol].setAttributeNS(null, "label", V); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get default() { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'get default' called on an object that is not a valid instance of HTMLTrackElement."); } ceReactionsPreSteps_helpers_custom_elements(globalObject); try { return esValue[implSymbol].hasAttributeNS(null, "default"); } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } set default(V) { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'set default' called on an object that is not a valid instance of HTMLTrackElement."); } V = conversions["boolean"](V, { context: "Failed to set the 'default' property on 'HTMLTrackElement': The provided value" }); ceReactionsPreSteps_helpers_custom_elements(globalObject); try { if (V) { esValue[implSymbol].setAttributeNS(null, "default", ""); } else { esValue[implSymbol].removeAttributeNS(null, "default"); } } finally { ceReactionsPostSteps_helpers_custom_elements(globalObject); } } get readyState() { const esValue = this !== null && this !== undefined ? this : globalObject; if (!exports.is(esValue)) { throw new TypeError("'get readyState' called on an object that is not a valid instance of HTMLTrackElement."); } return esValue[implSymbol]["readyState"]; } } Object.defineProperties(HTMLTrackElement.prototype, { kind: { enumerable: true }, src: { enumerable: true }, srclang: { enumerable: true }, label: { enumerable: true }, default: { enumerable: true }, readyState: { enumerable: true }, [Symbol.toStringTag]: { value: "HTMLTrackElement", configurable: true }, NONE: { value: 0, enumerable: true }, LOADING: { value: 1, enumerable: true }, LOADED: { value: 2, enumerable: true }, ERROR: { value: 3, enumerable: true } }); Object.defineProperties(HTMLTrackElement, { NONE: { value: 0, enumerable: true }, LOADING: { value: 1, enumerable: true }, LOADED: { value: 2, enumerable: true }, ERROR: { value: 3, enumerable: true } }); if (globalObject[ctorRegistrySymbol] === undefined) { globalObject[ctorRegistrySymbol] = Object.create(null); } globalObject[ctorRegistrySymbol][interfaceName] = HTMLTrackElement; Object.defineProperty(globalObject, interfaceName, { configurable: true, writable: true, value: HTMLTrackElement }); }; const Impl = require("../nodes/HTMLTrackElement-impl.js");