Last active
June 28, 2024 11:36
-
-
Save canalun/0713a64cf95ada95ed6cffda21069aef to your computer and use it in GitHub Desktop.
Record all the calls and their serializable args for built-in functions.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window["record"] = []; | |
// The recording starts when you set it as true. | |
// Otherwise, the process in this file would be also recorded. | |
window["isRecorded"] = false; | |
const changeableBuiltInNames = getChangeableBuiltInNames(); | |
for (const name of changeableBuiltInNames) { | |
let target = window; | |
const path = name.split("."); | |
for (let i = 0; i < path.length; i++) { | |
if (i < path.length - 1) { | |
try { | |
// Some APIs such as `callee` throw when it's accessed. | |
target = target[path[i]]; | |
} catch { | |
break; | |
} | |
} else { | |
let original = null; | |
try { | |
// Some APIs such as `callee` throw when it's accessed. | |
original = target[path[i]]; | |
} catch { | |
break; | |
} | |
if (original instanceof Function) { | |
const originalFunction = original; // Keep a direct reference to the original function. | |
const handler = { | |
apply(_target, thisArg, argumentsList) { | |
const result = Reflect.apply( | |
originalFunction, | |
thisArg, | |
argumentsList | |
); | |
if (window["isRecorded"]) { | |
let args = ""; | |
try { | |
args = JSON.stringify(argumentsList); | |
} catch { | |
args = "*****************"; | |
} | |
let result = ""; | |
try { | |
result = JSON.stringify(result); | |
} catch { | |
result = "*****************"; | |
} | |
window["record"].push({ name, argumentsList: args, result }); | |
} | |
return result; | |
}, | |
}; | |
target[path[i]] = new Proxy(original, handler); | |
} | |
} | |
} | |
} | |
isRecorded = true; | |
// ref: https://gist.github.com/canalun/67164839b74ca810e6c549d6646c6cfd | |
function getChangeableBuiltInNames() { | |
return [ | |
"globalThis.Object", | |
"globalThis.Object.prototype.__defineGetter__", | |
"globalThis.Object.prototype.__defineSetter__", | |
"globalThis.Object.prototype.hasOwnProperty", | |
"globalThis.Object.prototype.__lookupGetter__", | |
"globalThis.Object.prototype.__lookupSetter__", | |
"globalThis.Object.prototype.isPrototypeOf", | |
"globalThis.Object.prototype.propertyIsEnumerable", | |
"globalThis.Object.prototype.toString", | |
"globalThis.Object.prototype.valueOf", | |
"globalThis.Object.prototype.__proto__", | |
"globalThis.Object.prototype.toLocaleString", | |
"globalThis.Object.assign", | |
"globalThis.Object.getOwnPropertyDescriptor", | |
"globalThis.Object.getOwnPropertyDescriptors", | |
"globalThis.Object.getOwnPropertyNames", | |
"globalThis.Object.getOwnPropertySymbols", | |
"globalThis.Object.hasOwn", | |
"globalThis.Object.is", | |
"globalThis.Object.preventExtensions", | |
"globalThis.Object.seal", | |
"globalThis.Object.create", | |
"globalThis.Object.defineProperties", | |
"globalThis.Object.defineProperty", | |
"globalThis.Object.freeze", | |
"globalThis.Object.getPrototypeOf", | |
"globalThis.Object.setPrototypeOf", | |
"globalThis.Object.isExtensible", | |
"globalThis.Object.isFrozen", | |
"globalThis.Object.isSealed", | |
"globalThis.Object.keys", | |
"globalThis.Object.entries", | |
"globalThis.Object.fromEntries", | |
"globalThis.Object.values", | |
"globalThis.Object.groupBy", | |
"globalThis.Function", | |
// these cannot be used under strict mode | |
// 'globalThis.Function.prototype.arguments', | |
// 'globalThis.Function.prototype.caller', | |
"globalThis.Function.prototype.apply", | |
"globalThis.Function.prototype.bind", | |
"globalThis.Function.prototype.call", | |
"globalThis.Function.prototype.toString", | |
"globalThis.Array", | |
"globalThis.Array.prototype.at", | |
"globalThis.Array.prototype.concat", | |
"globalThis.Array.prototype.copyWithin", | |
"globalThis.Array.prototype.fill", | |
"globalThis.Array.prototype.find", | |
"globalThis.Array.prototype.findIndex", | |
"globalThis.Array.prototype.findLast", | |
"globalThis.Array.prototype.findLastIndex", | |
"globalThis.Array.prototype.lastIndexOf", | |
"globalThis.Array.prototype.pop", | |
// avoid infinite loop | |
// 'globalThis.Array.prototype.push', | |
"globalThis.Array.prototype.reverse", | |
"globalThis.Array.prototype.shift", | |
"globalThis.Array.prototype.unshift", | |
"globalThis.Array.prototype.slice", | |
"globalThis.Array.prototype.sort", | |
"globalThis.Array.prototype.splice", | |
"globalThis.Array.prototype.includes", | |
"globalThis.Array.prototype.indexOf", | |
"globalThis.Array.prototype.join", | |
"globalThis.Array.prototype.keys", | |
"globalThis.Array.prototype.entries", | |
"globalThis.Array.prototype.values", | |
"globalThis.Array.prototype.forEach", | |
"globalThis.Array.prototype.filter", | |
"globalThis.Array.prototype.flat", | |
"globalThis.Array.prototype.flatMap", | |
"globalThis.Array.prototype.map", | |
"globalThis.Array.prototype.every", | |
"globalThis.Array.prototype.some", | |
"globalThis.Array.prototype.reduce", | |
"globalThis.Array.prototype.reduceRight", | |
"globalThis.Array.prototype.toLocaleString", | |
"globalThis.Array.prototype.toString", | |
"globalThis.Array.prototype.toReversed", | |
"globalThis.Array.prototype.toSorted", | |
"globalThis.Array.prototype.toSpliced", | |
"globalThis.Array.prototype.with", | |
"globalThis.Array.prototype.Symbol(Symbol.iterator)", | |
"globalThis.Array.prototype.Symbol(Symbol.unscopables)", | |
"globalThis.Array.isArray", | |
"globalThis.Array.from", | |
"globalThis.Array.of", | |
"globalThis.Array.Symbol(Symbol.species)", | |
"globalThis.Number", | |
"globalThis.Number.prototype.toExponential", | |
"globalThis.Number.prototype.toFixed", | |
"globalThis.Number.prototype.toPrecision", | |
"globalThis.Number.prototype.toString", | |
"globalThis.Number.prototype.valueOf", | |
"globalThis.Number.prototype.toLocaleString", | |
"globalThis.Number.isFinite", | |
"globalThis.Number.isInteger", | |
"globalThis.Number.isNaN", | |
"globalThis.Number.isSafeInteger", | |
"globalThis.Number.parseFloat", | |
"globalThis.Number.parseInt", | |
"globalThis.parseFloat", | |
"globalThis.parseInt", | |
"globalThis.Boolean", | |
"globalThis.Boolean.prototype.toString", | |
"globalThis.Boolean.prototype.valueOf", | |
"globalThis.String", | |
"globalThis.String.prototype.anchor", | |
"globalThis.String.prototype.at", | |
"globalThis.String.prototype.big", | |
"globalThis.String.prototype.blink", | |
"globalThis.String.prototype.bold", | |
"globalThis.String.prototype.charAt", | |
"globalThis.String.prototype.charCodeAt", | |
"globalThis.String.prototype.codePointAt", | |
"globalThis.String.prototype.concat", | |
"globalThis.String.prototype.endsWith", | |
"globalThis.String.prototype.fontcolor", | |
"globalThis.String.prototype.fontsize", | |
"globalThis.String.prototype.fixed", | |
"globalThis.String.prototype.includes", | |
"globalThis.String.prototype.indexOf", | |
"globalThis.String.prototype.isWellFormed", | |
"globalThis.String.prototype.italics", | |
"globalThis.String.prototype.lastIndexOf", | |
"globalThis.String.prototype.link", | |
"globalThis.String.prototype.localeCompare", | |
"globalThis.String.prototype.match", | |
"globalThis.String.prototype.matchAll", | |
"globalThis.String.prototype.normalize", | |
"globalThis.String.prototype.padEnd", | |
"globalThis.String.prototype.padStart", | |
"globalThis.String.prototype.repeat", | |
"globalThis.String.prototype.replace", | |
"globalThis.String.prototype.replaceAll", | |
"globalThis.String.prototype.search", | |
"globalThis.String.prototype.slice", | |
"globalThis.String.prototype.small", | |
"globalThis.String.prototype.split", | |
"globalThis.String.prototype.strike", | |
"globalThis.String.prototype.sub", | |
"globalThis.String.prototype.substr", | |
"globalThis.String.prototype.substring", | |
"globalThis.String.prototype.sup", | |
"globalThis.String.prototype.startsWith", | |
"globalThis.String.prototype.toString", | |
"globalThis.String.prototype.toWellFormed", | |
"globalThis.String.prototype.trim", | |
"globalThis.String.prototype.trimStart", | |
"globalThis.String.prototype.trimLeft", | |
"globalThis.String.prototype.trimEnd", | |
"globalThis.String.prototype.trimRight", | |
"globalThis.String.prototype.toLocaleLowerCase", | |
"globalThis.String.prototype.toLocaleUpperCase", | |
"globalThis.String.prototype.toLowerCase", | |
"globalThis.String.prototype.toUpperCase", | |
"globalThis.String.prototype.valueOf", | |
"globalThis.String.prototype.Symbol(Symbol.iterator)", | |
"globalThis.String.fromCharCode", | |
"globalThis.String.fromCodePoint", | |
"globalThis.String.raw", | |
"globalThis.Symbol", | |
"globalThis.Symbol.prototype.toString", | |
"globalThis.Symbol.prototype.valueOf", | |
"globalThis.Symbol.prototype.description", | |
"globalThis.Symbol.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Symbol.prototype.Symbol(Symbol.toPrimitive)", | |
"globalThis.Symbol.for", | |
"globalThis.Symbol.keyFor", | |
"globalThis.Date", | |
"globalThis.Date.prototype.toString", | |
"globalThis.Date.prototype.toDateString", | |
"globalThis.Date.prototype.toTimeString", | |
"globalThis.Date.prototype.toISOString", | |
"globalThis.Date.prototype.toUTCString", | |
"globalThis.Date.prototype.toGMTString", | |
"globalThis.Date.prototype.getDate", | |
"globalThis.Date.prototype.setDate", | |
"globalThis.Date.prototype.getDay", | |
"globalThis.Date.prototype.getFullYear", | |
"globalThis.Date.prototype.setFullYear", | |
"globalThis.Date.prototype.getHours", | |
"globalThis.Date.prototype.setHours", | |
"globalThis.Date.prototype.getMilliseconds", | |
"globalThis.Date.prototype.setMilliseconds", | |
"globalThis.Date.prototype.getMinutes", | |
"globalThis.Date.prototype.setMinutes", | |
"globalThis.Date.prototype.getMonth", | |
"globalThis.Date.prototype.setMonth", | |
"globalThis.Date.prototype.getSeconds", | |
"globalThis.Date.prototype.setSeconds", | |
"globalThis.Date.prototype.getTime", | |
"globalThis.Date.prototype.setTime", | |
"globalThis.Date.prototype.getTimezoneOffset", | |
"globalThis.Date.prototype.getUTCDate", | |
"globalThis.Date.prototype.setUTCDate", | |
"globalThis.Date.prototype.getUTCDay", | |
"globalThis.Date.prototype.getUTCFullYear", | |
"globalThis.Date.prototype.setUTCFullYear", | |
"globalThis.Date.prototype.getUTCHours", | |
"globalThis.Date.prototype.setUTCHours", | |
"globalThis.Date.prototype.getUTCMilliseconds", | |
"globalThis.Date.prototype.setUTCMilliseconds", | |
"globalThis.Date.prototype.getUTCMinutes", | |
"globalThis.Date.prototype.setUTCMinutes", | |
"globalThis.Date.prototype.getUTCMonth", | |
"globalThis.Date.prototype.setUTCMonth", | |
"globalThis.Date.prototype.getUTCSeconds", | |
"globalThis.Date.prototype.setUTCSeconds", | |
"globalThis.Date.prototype.valueOf", | |
"globalThis.Date.prototype.getYear", | |
"globalThis.Date.prototype.setYear", | |
"globalThis.Date.prototype.toJSON", | |
"globalThis.Date.prototype.toLocaleString", | |
"globalThis.Date.prototype.toLocaleDateString", | |
"globalThis.Date.prototype.toLocaleTimeString", | |
"globalThis.Date.prototype.Symbol(Symbol.toPrimitive)", | |
"globalThis.Date.now", | |
"globalThis.Date.parse", | |
"globalThis.Date.UTC", | |
"globalThis.Promise", | |
"globalThis.Promise.prototype.then", | |
"globalThis.Promise.prototype.catch", | |
"globalThis.Promise.prototype.finally", | |
"globalThis.Promise.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Promise.all", | |
"globalThis.Promise.allSettled", | |
"globalThis.Promise.any", | |
"globalThis.Promise.race", | |
"globalThis.Promise.resolve", | |
"globalThis.Promise.reject", | |
"globalThis.Promise.withResolvers", | |
"globalThis.Promise.Symbol(Symbol.species)", | |
"globalThis.RegExp", | |
"globalThis.RegExp.prototype.exec", | |
"globalThis.RegExp.prototype.dotAll", | |
"globalThis.RegExp.prototype.flags", | |
"globalThis.RegExp.prototype.global", | |
"globalThis.RegExp.prototype.hasIndices", | |
"globalThis.RegExp.prototype.ignoreCase", | |
"globalThis.RegExp.prototype.multiline", | |
"globalThis.RegExp.prototype.source", | |
"globalThis.RegExp.prototype.sticky", | |
"globalThis.RegExp.prototype.unicode", | |
"globalThis.RegExp.prototype.compile", | |
"globalThis.RegExp.prototype.toString", | |
"globalThis.RegExp.prototype.test", | |
"globalThis.RegExp.prototype.unicodeSets", | |
"globalThis.RegExp.prototype.Symbol(Symbol.match)", | |
"globalThis.RegExp.prototype.Symbol(Symbol.matchAll)", | |
"globalThis.RegExp.prototype.Symbol(Symbol.replace)", | |
"globalThis.RegExp.prototype.Symbol(Symbol.search)", | |
"globalThis.RegExp.prototype.Symbol(Symbol.split)", | |
"globalThis.RegExp.input", | |
"globalThis.RegExp.$_", | |
"globalThis.RegExp.lastMatch", | |
"globalThis.RegExp.$&", | |
"globalThis.RegExp.lastParen", | |
"globalThis.RegExp.$+", | |
"globalThis.RegExp.leftContext", | |
"globalThis.RegExp.$`", | |
"globalThis.RegExp.rightContext", | |
"globalThis.RegExp.$'", | |
"globalThis.RegExp.$1", | |
"globalThis.RegExp.$2", | |
"globalThis.RegExp.$3", | |
"globalThis.RegExp.$4", | |
"globalThis.RegExp.$5", | |
"globalThis.RegExp.$6", | |
"globalThis.RegExp.$7", | |
"globalThis.RegExp.$8", | |
"globalThis.RegExp.$9", | |
"globalThis.RegExp.Symbol(Symbol.species)", | |
"globalThis.Error", | |
"globalThis.Error.prototype.name", | |
"globalThis.Error.prototype.toString", | |
"globalThis.Error.captureStackTrace", | |
"globalThis.Error.stackTraceLimit", | |
"globalThis.AggregateError", | |
"globalThis.AggregateError.prototype.name", | |
"globalThis.EvalError", | |
"globalThis.EvalError.prototype.name", | |
"globalThis.RangeError", | |
"globalThis.RangeError.prototype.name", | |
"globalThis.ReferenceError", | |
"globalThis.ReferenceError.prototype.name", | |
"globalThis.SyntaxError", | |
"globalThis.SyntaxError.prototype.name", | |
"globalThis.TypeError", | |
"globalThis.TypeError.prototype.name", | |
"globalThis.URIError", | |
"globalThis.URIError.prototype.name", | |
"globalThis.globalThis", | |
"globalThis.JSON", | |
"globalThis.JSON.parse", | |
// avoid infinite loop | |
// 'globalThis.JSON.stringify', | |
"globalThis.JSON.rawJSON", | |
"globalThis.JSON.isRawJSON", | |
"globalThis.JSON.Symbol(Symbol.toStringTag)", | |
"globalThis.Math", | |
"globalThis.Math.abs", | |
"globalThis.Math.acos", | |
"globalThis.Math.acosh", | |
"globalThis.Math.asin", | |
"globalThis.Math.asinh", | |
"globalThis.Math.atan", | |
"globalThis.Math.atanh", | |
"globalThis.Math.atan2", | |
"globalThis.Math.ceil", | |
"globalThis.Math.cbrt", | |
"globalThis.Math.expm1", | |
"globalThis.Math.clz32", | |
"globalThis.Math.cos", | |
"globalThis.Math.cosh", | |
"globalThis.Math.exp", | |
"globalThis.Math.floor", | |
"globalThis.Math.fround", | |
"globalThis.Math.hypot", | |
"globalThis.Math.imul", | |
"globalThis.Math.log", | |
"globalThis.Math.log1p", | |
"globalThis.Math.log2", | |
"globalThis.Math.log10", | |
"globalThis.Math.max", | |
"globalThis.Math.min", | |
"globalThis.Math.pow", | |
"globalThis.Math.random", | |
"globalThis.Math.round", | |
"globalThis.Math.sign", | |
"globalThis.Math.sin", | |
"globalThis.Math.sinh", | |
"globalThis.Math.sqrt", | |
"globalThis.Math.tan", | |
"globalThis.Math.tanh", | |
"globalThis.Math.trunc", | |
"globalThis.Math.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl", | |
"globalThis.Intl.getCanonicalLocales", | |
"globalThis.Intl.supportedValuesOf", | |
"globalThis.Intl.DateTimeFormat", | |
"globalThis.Intl.DateTimeFormat.prototype.resolvedOptions", | |
"globalThis.Intl.DateTimeFormat.prototype.formatToParts", | |
"globalThis.Intl.DateTimeFormat.prototype.format", | |
"globalThis.Intl.DateTimeFormat.prototype.formatRange", | |
"globalThis.Intl.DateTimeFormat.prototype.formatRangeToParts", | |
"globalThis.Intl.DateTimeFormat.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.DateTimeFormat.supportedLocalesOf", | |
"globalThis.Intl.NumberFormat", | |
"globalThis.Intl.NumberFormat.prototype.resolvedOptions", | |
"globalThis.Intl.NumberFormat.prototype.formatToParts", | |
"globalThis.Intl.NumberFormat.prototype.format", | |
"globalThis.Intl.NumberFormat.prototype.formatRange", | |
"globalThis.Intl.NumberFormat.prototype.formatRangeToParts", | |
"globalThis.Intl.NumberFormat.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.NumberFormat.supportedLocalesOf", | |
"globalThis.Intl.Collator", | |
"globalThis.Intl.Collator.prototype.resolvedOptions", | |
"globalThis.Intl.Collator.prototype.compare", | |
"globalThis.Intl.Collator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.Collator.supportedLocalesOf", | |
"globalThis.Intl.v8BreakIterator", | |
"globalThis.Intl.v8BreakIterator.prototype.resolvedOptions", | |
"globalThis.Intl.v8BreakIterator.prototype.adoptText", | |
"globalThis.Intl.v8BreakIterator.prototype.first", | |
"globalThis.Intl.v8BreakIterator.prototype.next", | |
"globalThis.Intl.v8BreakIterator.prototype.current", | |
"globalThis.Intl.v8BreakIterator.prototype.breakType", | |
"globalThis.Intl.v8BreakIterator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.v8BreakIterator.supportedLocalesOf", | |
"globalThis.Intl.PluralRules", | |
"globalThis.Intl.PluralRules.prototype.resolvedOptions", | |
"globalThis.Intl.PluralRules.prototype.select", | |
"globalThis.Intl.PluralRules.prototype.selectRange", | |
"globalThis.Intl.PluralRules.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.PluralRules.supportedLocalesOf", | |
"globalThis.Intl.RelativeTimeFormat", | |
"globalThis.Intl.RelativeTimeFormat.prototype.resolvedOptions", | |
"globalThis.Intl.RelativeTimeFormat.prototype.format", | |
"globalThis.Intl.RelativeTimeFormat.prototype.formatToParts", | |
"globalThis.Intl.RelativeTimeFormat.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.RelativeTimeFormat.supportedLocalesOf", | |
"globalThis.Intl.ListFormat", | |
"globalThis.Intl.ListFormat.prototype.resolvedOptions", | |
"globalThis.Intl.ListFormat.prototype.format", | |
"globalThis.Intl.ListFormat.prototype.formatToParts", | |
"globalThis.Intl.ListFormat.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.ListFormat.supportedLocalesOf", | |
"globalThis.Intl.Locale", | |
"globalThis.Intl.Locale.prototype.toString", | |
"globalThis.Intl.Locale.prototype.maximize", | |
"globalThis.Intl.Locale.prototype.minimize", | |
"globalThis.Intl.Locale.prototype.language", | |
"globalThis.Intl.Locale.prototype.script", | |
"globalThis.Intl.Locale.prototype.region", | |
"globalThis.Intl.Locale.prototype.baseName", | |
"globalThis.Intl.Locale.prototype.calendar", | |
"globalThis.Intl.Locale.prototype.caseFirst", | |
"globalThis.Intl.Locale.prototype.collation", | |
"globalThis.Intl.Locale.prototype.hourCycle", | |
"globalThis.Intl.Locale.prototype.numeric", | |
"globalThis.Intl.Locale.prototype.numberingSystem", | |
"globalThis.Intl.Locale.prototype.calendars", | |
"globalThis.Intl.Locale.prototype.collations", | |
"globalThis.Intl.Locale.prototype.hourCycles", | |
"globalThis.Intl.Locale.prototype.numberingSystems", | |
"globalThis.Intl.Locale.prototype.textInfo", | |
"globalThis.Intl.Locale.prototype.timeZones", | |
"globalThis.Intl.Locale.prototype.weekInfo", | |
"globalThis.Intl.Locale.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.DisplayNames", | |
"globalThis.Intl.DisplayNames.prototype.resolvedOptions", | |
"globalThis.Intl.DisplayNames.prototype.of", | |
"globalThis.Intl.DisplayNames.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.DisplayNames.supportedLocalesOf", | |
"globalThis.Intl.Segmenter", | |
"globalThis.Intl.Segmenter.prototype.resolvedOptions", | |
"globalThis.Intl.Segmenter.prototype.segment", | |
"globalThis.Intl.Segmenter.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Intl.Segmenter.supportedLocalesOf", | |
"globalThis.Intl.Symbol(Symbol.toStringTag)", | |
"globalThis.ArrayBuffer", | |
"globalThis.ArrayBuffer.prototype.byteLength", | |
"globalThis.ArrayBuffer.prototype.slice", | |
"globalThis.ArrayBuffer.prototype.maxByteLength", | |
"globalThis.ArrayBuffer.prototype.resizable", | |
"globalThis.ArrayBuffer.prototype.resize", | |
"globalThis.ArrayBuffer.prototype.transfer", | |
"globalThis.ArrayBuffer.prototype.transferToFixedLength", | |
"globalThis.ArrayBuffer.prototype.detached", | |
"globalThis.ArrayBuffer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ArrayBuffer.isView", | |
"globalThis.ArrayBuffer.Symbol(Symbol.species)", | |
"globalThis.Atomics", | |
"globalThis.Atomics.load", | |
"globalThis.Atomics.store", | |
"globalThis.Atomics.add", | |
"globalThis.Atomics.sub", | |
"globalThis.Atomics.and", | |
"globalThis.Atomics.or", | |
"globalThis.Atomics.xor", | |
"globalThis.Atomics.exchange", | |
"globalThis.Atomics.compareExchange", | |
"globalThis.Atomics.isLockFree", | |
"globalThis.Atomics.wait", | |
"globalThis.Atomics.waitAsync", | |
"globalThis.Atomics.notify", | |
"globalThis.Atomics.Symbol(Symbol.toStringTag)", | |
"globalThis.Uint8Array", | |
"globalThis.Int8Array", | |
"globalThis.Uint16Array", | |
"globalThis.Int16Array", | |
"globalThis.Uint32Array", | |
"globalThis.Int32Array", | |
"globalThis.Float32Array", | |
"globalThis.Float64Array", | |
"globalThis.Uint8ClampedArray", | |
"globalThis.BigUint64Array", | |
"globalThis.BigInt64Array", | |
"globalThis.DataView", | |
"globalThis.DataView.prototype.buffer", | |
"globalThis.DataView.prototype.byteLength", | |
"globalThis.DataView.prototype.byteOffset", | |
"globalThis.DataView.prototype.getInt8", | |
"globalThis.DataView.prototype.setInt8", | |
"globalThis.DataView.prototype.getUint8", | |
"globalThis.DataView.prototype.setUint8", | |
"globalThis.DataView.prototype.getInt16", | |
"globalThis.DataView.prototype.setInt16", | |
"globalThis.DataView.prototype.getUint16", | |
"globalThis.DataView.prototype.setUint16", | |
"globalThis.DataView.prototype.getInt32", | |
"globalThis.DataView.prototype.setInt32", | |
"globalThis.DataView.prototype.getUint32", | |
"globalThis.DataView.prototype.setUint32", | |
"globalThis.DataView.prototype.getFloat32", | |
"globalThis.DataView.prototype.setFloat32", | |
"globalThis.DataView.prototype.getFloat64", | |
"globalThis.DataView.prototype.setFloat64", | |
"globalThis.DataView.prototype.getBigInt64", | |
"globalThis.DataView.prototype.setBigInt64", | |
"globalThis.DataView.prototype.getBigUint64", | |
"globalThis.DataView.prototype.setBigUint64", | |
"globalThis.DataView.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Map", | |
"globalThis.Map.prototype.get", | |
"globalThis.Map.prototype.set", | |
"globalThis.Map.prototype.has", | |
"globalThis.Map.prototype.delete", | |
"globalThis.Map.prototype.clear", | |
"globalThis.Map.prototype.entries", | |
"globalThis.Map.prototype.forEach", | |
"globalThis.Map.prototype.keys", | |
"globalThis.Map.prototype.size", | |
"globalThis.Map.prototype.values", | |
"globalThis.Map.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Map.prototype.Symbol(Symbol.iterator)", | |
"globalThis.Map.groupBy", | |
"globalThis.Map.Symbol(Symbol.species)", | |
"globalThis.BigInt", | |
"globalThis.BigInt.prototype.toLocaleString", | |
"globalThis.BigInt.prototype.toString", | |
"globalThis.BigInt.prototype.valueOf", | |
"globalThis.BigInt.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BigInt.asUintN", | |
"globalThis.BigInt.asIntN", | |
"globalThis.Set", | |
"globalThis.Set.prototype.has", | |
"globalThis.Set.prototype.add", | |
"globalThis.Set.prototype.delete", | |
"globalThis.Set.prototype.clear", | |
"globalThis.Set.prototype.entries", | |
"globalThis.Set.prototype.forEach", | |
"globalThis.Set.prototype.size", | |
"globalThis.Set.prototype.values", | |
"globalThis.Set.prototype.keys", | |
"globalThis.Set.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Set.prototype.Symbol(Symbol.iterator)", | |
"globalThis.Set.Symbol(Symbol.species)", | |
"globalThis.WeakMap", | |
"globalThis.WeakMap.prototype.delete", | |
"globalThis.WeakMap.prototype.get", | |
"globalThis.WeakMap.prototype.set", | |
"globalThis.WeakMap.prototype.has", | |
"globalThis.WeakMap.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WeakSet", | |
"globalThis.WeakSet.prototype.delete", | |
"globalThis.WeakSet.prototype.has", | |
"globalThis.WeakSet.prototype.add", | |
"globalThis.WeakSet.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Proxy", | |
"globalThis.Proxy.revocable", | |
"globalThis.Reflect", | |
"globalThis.Reflect.defineProperty", | |
"globalThis.Reflect.deleteProperty", | |
// avoid infinite loop | |
// 'globalThis.Reflect.apply', | |
"globalThis.Reflect.construct", | |
"globalThis.Reflect.get", | |
"globalThis.Reflect.getOwnPropertyDescriptor", | |
"globalThis.Reflect.getPrototypeOf", | |
"globalThis.Reflect.has", | |
"globalThis.Reflect.isExtensible", | |
"globalThis.Reflect.ownKeys", | |
"globalThis.Reflect.preventExtensions", | |
"globalThis.Reflect.set", | |
"globalThis.Reflect.setPrototypeOf", | |
"globalThis.Reflect.Symbol(Symbol.toStringTag)", | |
"globalThis.FinalizationRegistry", | |
"globalThis.FinalizationRegistry.prototype.register", | |
"globalThis.FinalizationRegistry.prototype.unregister", | |
"globalThis.FinalizationRegistry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WeakRef", | |
"globalThis.WeakRef.prototype.deref", | |
"globalThis.WeakRef.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.decodeURI", | |
"globalThis.decodeURIComponent", | |
"globalThis.encodeURI", | |
"globalThis.encodeURIComponent", | |
"globalThis.escape", | |
"globalThis.unescape", | |
"globalThis.eval", | |
"globalThis.isFinite", | |
"globalThis.isNaN", | |
"globalThis.console", | |
"globalThis.console.debug", | |
"globalThis.console.error", | |
"globalThis.console.info", | |
"globalThis.console.log", | |
"globalThis.console.warn", | |
"globalThis.console.dir", | |
"globalThis.console.dirxml", | |
"globalThis.console.table", | |
"globalThis.console.trace", | |
"globalThis.console.group", | |
"globalThis.console.groupCollapsed", | |
"globalThis.console.groupEnd", | |
"globalThis.console.clear", | |
"globalThis.console.count", | |
"globalThis.console.countReset", | |
"globalThis.console.assert", | |
"globalThis.console.profile", | |
"globalThis.console.profileEnd", | |
"globalThis.console.time", | |
"globalThis.console.timeLog", | |
"globalThis.console.timeEnd", | |
"globalThis.console.timeStamp", | |
"globalThis.console.context", | |
"globalThis.console.createTask", | |
"globalThis.console.memory", | |
"globalThis.console.Symbol(Symbol.toStringTag)", | |
"globalThis.Option", | |
"globalThis.Option.prototype.disabled", | |
"globalThis.Option.prototype.form", | |
"globalThis.Option.prototype.label", | |
"globalThis.Option.prototype.defaultSelected", | |
"globalThis.Option.prototype.selected", | |
"globalThis.Option.prototype.value", | |
"globalThis.Option.prototype.text", | |
"globalThis.Option.prototype.index", | |
"globalThis.Option.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Image", | |
"globalThis.Image.prototype.alt", | |
"globalThis.Image.prototype.src", | |
"globalThis.Image.prototype.srcset", | |
"globalThis.Image.prototype.sizes", | |
"globalThis.Image.prototype.crossOrigin", | |
"globalThis.Image.prototype.useMap", | |
"globalThis.Image.prototype.isMap", | |
"globalThis.Image.prototype.width", | |
"globalThis.Image.prototype.height", | |
"globalThis.Image.prototype.naturalWidth", | |
"globalThis.Image.prototype.naturalHeight", | |
"globalThis.Image.prototype.complete", | |
"globalThis.Image.prototype.currentSrc", | |
"globalThis.Image.prototype.referrerPolicy", | |
"globalThis.Image.prototype.decoding", | |
"globalThis.Image.prototype.fetchPriority", | |
"globalThis.Image.prototype.loading", | |
"globalThis.Image.prototype.name", | |
"globalThis.Image.prototype.lowsrc", | |
"globalThis.Image.prototype.align", | |
"globalThis.Image.prototype.hspace", | |
"globalThis.Image.prototype.vspace", | |
"globalThis.Image.prototype.longDesc", | |
"globalThis.Image.prototype.border", | |
"globalThis.Image.prototype.x", | |
"globalThis.Image.prototype.y", | |
"globalThis.Image.prototype.decode", | |
"globalThis.Image.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Audio", | |
"globalThis.Audio.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitURL", | |
"globalThis.webkitURL.prototype.origin", | |
"globalThis.webkitURL.prototype.protocol", | |
"globalThis.webkitURL.prototype.username", | |
"globalThis.webkitURL.prototype.password", | |
"globalThis.webkitURL.prototype.host", | |
"globalThis.webkitURL.prototype.hostname", | |
"globalThis.webkitURL.prototype.port", | |
"globalThis.webkitURL.prototype.pathname", | |
"globalThis.webkitURL.prototype.search", | |
"globalThis.webkitURL.prototype.searchParams", | |
"globalThis.webkitURL.prototype.hash", | |
"globalThis.webkitURL.prototype.href", | |
"globalThis.webkitURL.prototype.toJSON", | |
"globalThis.webkitURL.prototype.toString", | |
"globalThis.webkitURL.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitURL.canParse", | |
"globalThis.webkitURL.createObjectURL", | |
"globalThis.webkitURL.revokeObjectURL", | |
"globalThis.webkitRTCPeerConnection", | |
"globalThis.webkitRTCPeerConnection.prototype.localDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.currentLocalDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.pendingLocalDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.remoteDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.currentRemoteDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.pendingRemoteDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.signalingState", | |
"globalThis.webkitRTCPeerConnection.prototype.iceGatheringState", | |
"globalThis.webkitRTCPeerConnection.prototype.iceConnectionState", | |
"globalThis.webkitRTCPeerConnection.prototype.connectionState", | |
"globalThis.webkitRTCPeerConnection.prototype.canTrickleIceCandidates", | |
"globalThis.webkitRTCPeerConnection.prototype.onnegotiationneeded", | |
"globalThis.webkitRTCPeerConnection.prototype.onicecandidate", | |
"globalThis.webkitRTCPeerConnection.prototype.onsignalingstatechange", | |
"globalThis.webkitRTCPeerConnection.prototype.oniceconnectionstatechange", | |
"globalThis.webkitRTCPeerConnection.prototype.onconnectionstatechange", | |
"globalThis.webkitRTCPeerConnection.prototype.onicegatheringstatechange", | |
"globalThis.webkitRTCPeerConnection.prototype.onicecandidateerror", | |
"globalThis.webkitRTCPeerConnection.prototype.ontrack", | |
"globalThis.webkitRTCPeerConnection.prototype.sctp", | |
"globalThis.webkitRTCPeerConnection.prototype.ondatachannel", | |
"globalThis.webkitRTCPeerConnection.prototype.onaddstream", | |
"globalThis.webkitRTCPeerConnection.prototype.onremovestream", | |
"globalThis.webkitRTCPeerConnection.prototype.addIceCandidate", | |
"globalThis.webkitRTCPeerConnection.prototype.addStream", | |
"globalThis.webkitRTCPeerConnection.prototype.addTrack", | |
"globalThis.webkitRTCPeerConnection.prototype.addTransceiver", | |
"globalThis.webkitRTCPeerConnection.prototype.close", | |
"globalThis.webkitRTCPeerConnection.prototype.createAnswer", | |
"globalThis.webkitRTCPeerConnection.prototype.createDTMFSender", | |
"globalThis.webkitRTCPeerConnection.prototype.createDataChannel", | |
"globalThis.webkitRTCPeerConnection.prototype.createOffer", | |
"globalThis.webkitRTCPeerConnection.prototype.getConfiguration", | |
"globalThis.webkitRTCPeerConnection.prototype.getLocalStreams", | |
"globalThis.webkitRTCPeerConnection.prototype.getReceivers", | |
"globalThis.webkitRTCPeerConnection.prototype.getRemoteStreams", | |
"globalThis.webkitRTCPeerConnection.prototype.getSenders", | |
"globalThis.webkitRTCPeerConnection.prototype.getStats", | |
"globalThis.webkitRTCPeerConnection.prototype.getTransceivers", | |
"globalThis.webkitRTCPeerConnection.prototype.removeStream", | |
"globalThis.webkitRTCPeerConnection.prototype.removeTrack", | |
"globalThis.webkitRTCPeerConnection.prototype.restartIce", | |
"globalThis.webkitRTCPeerConnection.prototype.setConfiguration", | |
"globalThis.webkitRTCPeerConnection.prototype.setLocalDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.setRemoteDescription", | |
"globalThis.webkitRTCPeerConnection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitRTCPeerConnection.generateCertificate", | |
"globalThis.webkitMediaStream", | |
"globalThis.webkitMediaStream.prototype.id", | |
"globalThis.webkitMediaStream.prototype.active", | |
"globalThis.webkitMediaStream.prototype.onaddtrack", | |
"globalThis.webkitMediaStream.prototype.onremovetrack", | |
"globalThis.webkitMediaStream.prototype.onactive", | |
"globalThis.webkitMediaStream.prototype.oninactive", | |
"globalThis.webkitMediaStream.prototype.addTrack", | |
"globalThis.webkitMediaStream.prototype.clone", | |
"globalThis.webkitMediaStream.prototype.getAudioTracks", | |
"globalThis.webkitMediaStream.prototype.getTrackById", | |
"globalThis.webkitMediaStream.prototype.getTracks", | |
"globalThis.webkitMediaStream.prototype.getVideoTracks", | |
"globalThis.webkitMediaStream.prototype.removeTrack", | |
"globalThis.webkitMediaStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebKitMutationObserver", | |
"globalThis.WebKitMutationObserver.prototype.disconnect", | |
"globalThis.WebKitMutationObserver.prototype.observe", | |
"globalThis.WebKitMutationObserver.prototype.takeRecords", | |
"globalThis.WebKitMutationObserver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebKitCSSMatrix", | |
"globalThis.WebKitCSSMatrix.prototype.a", | |
"globalThis.WebKitCSSMatrix.prototype.b", | |
"globalThis.WebKitCSSMatrix.prototype.c", | |
"globalThis.WebKitCSSMatrix.prototype.d", | |
"globalThis.WebKitCSSMatrix.prototype.e", | |
"globalThis.WebKitCSSMatrix.prototype.f", | |
"globalThis.WebKitCSSMatrix.prototype.m11", | |
"globalThis.WebKitCSSMatrix.prototype.m12", | |
"globalThis.WebKitCSSMatrix.prototype.m13", | |
"globalThis.WebKitCSSMatrix.prototype.m14", | |
"globalThis.WebKitCSSMatrix.prototype.m21", | |
"globalThis.WebKitCSSMatrix.prototype.m22", | |
"globalThis.WebKitCSSMatrix.prototype.m23", | |
"globalThis.WebKitCSSMatrix.prototype.m24", | |
"globalThis.WebKitCSSMatrix.prototype.m31", | |
"globalThis.WebKitCSSMatrix.prototype.m32", | |
"globalThis.WebKitCSSMatrix.prototype.m33", | |
"globalThis.WebKitCSSMatrix.prototype.m34", | |
"globalThis.WebKitCSSMatrix.prototype.m41", | |
"globalThis.WebKitCSSMatrix.prototype.m42", | |
"globalThis.WebKitCSSMatrix.prototype.m43", | |
"globalThis.WebKitCSSMatrix.prototype.m44", | |
"globalThis.WebKitCSSMatrix.prototype.invertSelf", | |
"globalThis.WebKitCSSMatrix.prototype.multiplySelf", | |
"globalThis.WebKitCSSMatrix.prototype.preMultiplySelf", | |
"globalThis.WebKitCSSMatrix.prototype.rotateAxisAngleSelf", | |
"globalThis.WebKitCSSMatrix.prototype.rotateFromVectorSelf", | |
"globalThis.WebKitCSSMatrix.prototype.rotateSelf", | |
"globalThis.WebKitCSSMatrix.prototype.scale3dSelf", | |
"globalThis.WebKitCSSMatrix.prototype.scaleSelf", | |
"globalThis.WebKitCSSMatrix.prototype.skewXSelf", | |
"globalThis.WebKitCSSMatrix.prototype.skewYSelf", | |
"globalThis.WebKitCSSMatrix.prototype.translateSelf", | |
"globalThis.WebKitCSSMatrix.prototype.setMatrixValue", | |
"globalThis.WebKitCSSMatrix.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebKitCSSMatrix.fromFloat32Array", | |
"globalThis.WebKitCSSMatrix.fromFloat64Array", | |
"globalThis.WebKitCSSMatrix.fromMatrix", | |
"globalThis.XSLTProcessor", | |
"globalThis.XSLTProcessor.prototype.clearParameters", | |
"globalThis.XSLTProcessor.prototype.getParameter", | |
"globalThis.XSLTProcessor.prototype.importStylesheet", | |
"globalThis.XSLTProcessor.prototype.removeParameter", | |
"globalThis.XSLTProcessor.prototype.reset", | |
"globalThis.XSLTProcessor.prototype.setParameter", | |
"globalThis.XSLTProcessor.prototype.transformToDocument", | |
"globalThis.XSLTProcessor.prototype.transformToFragment", | |
"globalThis.XSLTProcessor.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XPathResult", | |
"globalThis.XPathResult.prototype.resultType", | |
"globalThis.XPathResult.prototype.numberValue", | |
"globalThis.XPathResult.prototype.stringValue", | |
"globalThis.XPathResult.prototype.booleanValue", | |
"globalThis.XPathResult.prototype.singleNodeValue", | |
"globalThis.XPathResult.prototype.invalidIteratorState", | |
"globalThis.XPathResult.prototype.snapshotLength", | |
"globalThis.XPathResult.prototype.iterateNext", | |
"globalThis.XPathResult.prototype.snapshotItem", | |
"globalThis.XPathResult.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XPathExpression", | |
"globalThis.XPathExpression.prototype.evaluate", | |
"globalThis.XPathExpression.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XPathEvaluator", | |
"globalThis.XPathEvaluator.prototype.createExpression", | |
"globalThis.XPathEvaluator.prototype.createNSResolver", | |
"globalThis.XPathEvaluator.prototype.evaluate", | |
"globalThis.XPathEvaluator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XMLSerializer", | |
"globalThis.XMLSerializer.prototype.serializeToString", | |
"globalThis.XMLSerializer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XMLHttpRequestUpload", | |
"globalThis.XMLHttpRequestUpload.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XMLHttpRequestEventTarget", | |
"globalThis.XMLHttpRequestEventTarget.prototype.onloadstart", | |
"globalThis.XMLHttpRequestEventTarget.prototype.onprogress", | |
"globalThis.XMLHttpRequestEventTarget.prototype.onabort", | |
"globalThis.XMLHttpRequestEventTarget.prototype.onerror", | |
"globalThis.XMLHttpRequestEventTarget.prototype.onload", | |
"globalThis.XMLHttpRequestEventTarget.prototype.ontimeout", | |
"globalThis.XMLHttpRequestEventTarget.prototype.onloadend", | |
"globalThis.XMLHttpRequestEventTarget.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XMLHttpRequest", | |
"globalThis.XMLHttpRequest.prototype.onreadystatechange", | |
"globalThis.XMLHttpRequest.prototype.readyState", | |
"globalThis.XMLHttpRequest.prototype.timeout", | |
"globalThis.XMLHttpRequest.prototype.withCredentials", | |
"globalThis.XMLHttpRequest.prototype.upload", | |
"globalThis.XMLHttpRequest.prototype.responseURL", | |
"globalThis.XMLHttpRequest.prototype.status", | |
"globalThis.XMLHttpRequest.prototype.statusText", | |
"globalThis.XMLHttpRequest.prototype.responseType", | |
"globalThis.XMLHttpRequest.prototype.response", | |
"globalThis.XMLHttpRequest.prototype.responseText", | |
"globalThis.XMLHttpRequest.prototype.responseXML", | |
"globalThis.XMLHttpRequest.prototype.abort", | |
"globalThis.XMLHttpRequest.prototype.getAllResponseHeaders", | |
"globalThis.XMLHttpRequest.prototype.getResponseHeader", | |
"globalThis.XMLHttpRequest.prototype.open", | |
"globalThis.XMLHttpRequest.prototype.overrideMimeType", | |
"globalThis.XMLHttpRequest.prototype.send", | |
"globalThis.XMLHttpRequest.prototype.setRequestHeader", | |
"globalThis.XMLHttpRequest.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.XMLDocument", | |
"globalThis.XMLDocument.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WritableStreamDefaultWriter", | |
"globalThis.WritableStreamDefaultWriter.prototype.closed", | |
"globalThis.WritableStreamDefaultWriter.prototype.desiredSize", | |
"globalThis.WritableStreamDefaultWriter.prototype.ready", | |
"globalThis.WritableStreamDefaultWriter.prototype.abort", | |
"globalThis.WritableStreamDefaultWriter.prototype.close", | |
"globalThis.WritableStreamDefaultWriter.prototype.releaseLock", | |
"globalThis.WritableStreamDefaultWriter.prototype.write", | |
"globalThis.WritableStreamDefaultWriter.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WritableStreamDefaultController", | |
"globalThis.WritableStreamDefaultController.prototype.signal", | |
"globalThis.WritableStreamDefaultController.prototype.error", | |
"globalThis.WritableStreamDefaultController.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WritableStream", | |
"globalThis.WritableStream.prototype.locked", | |
"globalThis.WritableStream.prototype.abort", | |
"globalThis.WritableStream.prototype.close", | |
"globalThis.WritableStream.prototype.getWriter", | |
"globalThis.WritableStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Worker", | |
"globalThis.Worker.prototype.onmessage", | |
"globalThis.Worker.prototype.postMessage", | |
"globalThis.Worker.prototype.terminate", | |
"globalThis.Worker.prototype.onerror", | |
"globalThis.Worker.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Window", | |
"globalThis.Window.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WheelEvent", | |
"globalThis.WheelEvent.prototype.deltaX", | |
"globalThis.WheelEvent.prototype.deltaY", | |
"globalThis.WheelEvent.prototype.deltaZ", | |
"globalThis.WheelEvent.prototype.deltaMode", | |
"globalThis.WheelEvent.prototype.wheelDeltaX", | |
"globalThis.WheelEvent.prototype.wheelDeltaY", | |
"globalThis.WheelEvent.prototype.wheelDelta", | |
"globalThis.WheelEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebSocket", | |
"globalThis.WebSocket.prototype.url", | |
"globalThis.WebSocket.prototype.readyState", | |
"globalThis.WebSocket.prototype.bufferedAmount", | |
"globalThis.WebSocket.prototype.onopen", | |
"globalThis.WebSocket.prototype.onerror", | |
"globalThis.WebSocket.prototype.onclose", | |
"globalThis.WebSocket.prototype.extensions", | |
"globalThis.WebSocket.prototype.protocol", | |
"globalThis.WebSocket.prototype.onmessage", | |
"globalThis.WebSocket.prototype.binaryType", | |
"globalThis.WebSocket.prototype.close", | |
"globalThis.WebSocket.prototype.send", | |
"globalThis.WebSocket.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLVertexArrayObject", | |
"globalThis.WebGLVertexArrayObject.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLUniformLocation", | |
"globalThis.WebGLUniformLocation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLTransformFeedback", | |
"globalThis.WebGLTransformFeedback.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLTexture", | |
"globalThis.WebGLTexture.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLSync", | |
"globalThis.WebGLSync.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLShaderPrecisionFormat", | |
"globalThis.WebGLShaderPrecisionFormat.prototype.rangeMin", | |
"globalThis.WebGLShaderPrecisionFormat.prototype.rangeMax", | |
"globalThis.WebGLShaderPrecisionFormat.prototype.precision", | |
"globalThis.WebGLShaderPrecisionFormat.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLShader", | |
"globalThis.WebGLShader.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLSampler", | |
"globalThis.WebGLSampler.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLRenderingContext", | |
"globalThis.WebGLRenderingContext.prototype.canvas", | |
"globalThis.WebGLRenderingContext.prototype.drawingBufferWidth", | |
"globalThis.WebGLRenderingContext.prototype.drawingBufferHeight", | |
"globalThis.WebGLRenderingContext.prototype.drawingBufferColorSpace", | |
"globalThis.WebGLRenderingContext.prototype.unpackColorSpace", | |
"globalThis.WebGLRenderingContext.prototype.activeTexture", | |
"globalThis.WebGLRenderingContext.prototype.attachShader", | |
"globalThis.WebGLRenderingContext.prototype.bindAttribLocation", | |
"globalThis.WebGLRenderingContext.prototype.bindRenderbuffer", | |
"globalThis.WebGLRenderingContext.prototype.blendColor", | |
"globalThis.WebGLRenderingContext.prototype.blendEquation", | |
"globalThis.WebGLRenderingContext.prototype.blendEquationSeparate", | |
"globalThis.WebGLRenderingContext.prototype.blendFunc", | |
"globalThis.WebGLRenderingContext.prototype.blendFuncSeparate", | |
"globalThis.WebGLRenderingContext.prototype.bufferData", | |
"globalThis.WebGLRenderingContext.prototype.bufferSubData", | |
"globalThis.WebGLRenderingContext.prototype.checkFramebufferStatus", | |
"globalThis.WebGLRenderingContext.prototype.compileShader", | |
"globalThis.WebGLRenderingContext.prototype.compressedTexImage2D", | |
"globalThis.WebGLRenderingContext.prototype.compressedTexSubImage2D", | |
"globalThis.WebGLRenderingContext.prototype.copyTexImage2D", | |
"globalThis.WebGLRenderingContext.prototype.copyTexSubImage2D", | |
"globalThis.WebGLRenderingContext.prototype.createBuffer", | |
"globalThis.WebGLRenderingContext.prototype.createFramebuffer", | |
"globalThis.WebGLRenderingContext.prototype.createProgram", | |
"globalThis.WebGLRenderingContext.prototype.createRenderbuffer", | |
"globalThis.WebGLRenderingContext.prototype.createShader", | |
"globalThis.WebGLRenderingContext.prototype.createTexture", | |
"globalThis.WebGLRenderingContext.prototype.cullFace", | |
"globalThis.WebGLRenderingContext.prototype.deleteBuffer", | |
"globalThis.WebGLRenderingContext.prototype.deleteFramebuffer", | |
"globalThis.WebGLRenderingContext.prototype.deleteProgram", | |
"globalThis.WebGLRenderingContext.prototype.deleteRenderbuffer", | |
"globalThis.WebGLRenderingContext.prototype.deleteShader", | |
"globalThis.WebGLRenderingContext.prototype.deleteTexture", | |
"globalThis.WebGLRenderingContext.prototype.depthFunc", | |
"globalThis.WebGLRenderingContext.prototype.depthMask", | |
"globalThis.WebGLRenderingContext.prototype.depthRange", | |
"globalThis.WebGLRenderingContext.prototype.detachShader", | |
"globalThis.WebGLRenderingContext.prototype.disable", | |
"globalThis.WebGLRenderingContext.prototype.enable", | |
"globalThis.WebGLRenderingContext.prototype.finish", | |
"globalThis.WebGLRenderingContext.prototype.flush", | |
"globalThis.WebGLRenderingContext.prototype.framebufferRenderbuffer", | |
"globalThis.WebGLRenderingContext.prototype.framebufferTexture2D", | |
"globalThis.WebGLRenderingContext.prototype.frontFace", | |
"globalThis.WebGLRenderingContext.prototype.generateMipmap", | |
"globalThis.WebGLRenderingContext.prototype.getActiveAttrib", | |
"globalThis.WebGLRenderingContext.prototype.getActiveUniform", | |
"globalThis.WebGLRenderingContext.prototype.getAttachedShaders", | |
"globalThis.WebGLRenderingContext.prototype.getAttribLocation", | |
"globalThis.WebGLRenderingContext.prototype.getBufferParameter", | |
"globalThis.WebGLRenderingContext.prototype.getContextAttributes", | |
"globalThis.WebGLRenderingContext.prototype.getError", | |
"globalThis.WebGLRenderingContext.prototype.getExtension", | |
"globalThis.WebGLRenderingContext.prototype.getFramebufferAttachmentParameter", | |
"globalThis.WebGLRenderingContext.prototype.getParameter", | |
"globalThis.WebGLRenderingContext.prototype.getProgramInfoLog", | |
"globalThis.WebGLRenderingContext.prototype.getProgramParameter", | |
"globalThis.WebGLRenderingContext.prototype.getRenderbufferParameter", | |
"globalThis.WebGLRenderingContext.prototype.getShaderInfoLog", | |
"globalThis.WebGLRenderingContext.prototype.getShaderParameter", | |
"globalThis.WebGLRenderingContext.prototype.getShaderPrecisionFormat", | |
"globalThis.WebGLRenderingContext.prototype.getShaderSource", | |
"globalThis.WebGLRenderingContext.prototype.getSupportedExtensions", | |
"globalThis.WebGLRenderingContext.prototype.getTexParameter", | |
"globalThis.WebGLRenderingContext.prototype.getUniform", | |
"globalThis.WebGLRenderingContext.prototype.getUniformLocation", | |
"globalThis.WebGLRenderingContext.prototype.getVertexAttrib", | |
"globalThis.WebGLRenderingContext.prototype.getVertexAttribOffset", | |
"globalThis.WebGLRenderingContext.prototype.hint", | |
"globalThis.WebGLRenderingContext.prototype.isBuffer", | |
"globalThis.WebGLRenderingContext.prototype.isContextLost", | |
"globalThis.WebGLRenderingContext.prototype.isEnabled", | |
"globalThis.WebGLRenderingContext.prototype.isFramebuffer", | |
"globalThis.WebGLRenderingContext.prototype.isProgram", | |
"globalThis.WebGLRenderingContext.prototype.isRenderbuffer", | |
"globalThis.WebGLRenderingContext.prototype.isShader", | |
"globalThis.WebGLRenderingContext.prototype.isTexture", | |
"globalThis.WebGLRenderingContext.prototype.lineWidth", | |
"globalThis.WebGLRenderingContext.prototype.linkProgram", | |
"globalThis.WebGLRenderingContext.prototype.pixelStorei", | |
"globalThis.WebGLRenderingContext.prototype.polygonOffset", | |
"globalThis.WebGLRenderingContext.prototype.readPixels", | |
"globalThis.WebGLRenderingContext.prototype.renderbufferStorage", | |
"globalThis.WebGLRenderingContext.prototype.sampleCoverage", | |
"globalThis.WebGLRenderingContext.prototype.shaderSource", | |
"globalThis.WebGLRenderingContext.prototype.stencilFunc", | |
"globalThis.WebGLRenderingContext.prototype.stencilFuncSeparate", | |
"globalThis.WebGLRenderingContext.prototype.stencilMask", | |
"globalThis.WebGLRenderingContext.prototype.stencilMaskSeparate", | |
"globalThis.WebGLRenderingContext.prototype.stencilOp", | |
"globalThis.WebGLRenderingContext.prototype.stencilOpSeparate", | |
"globalThis.WebGLRenderingContext.prototype.texImage2D", | |
"globalThis.WebGLRenderingContext.prototype.texParameterf", | |
"globalThis.WebGLRenderingContext.prototype.texParameteri", | |
"globalThis.WebGLRenderingContext.prototype.texSubImage2D", | |
"globalThis.WebGLRenderingContext.prototype.useProgram", | |
"globalThis.WebGLRenderingContext.prototype.validateProgram", | |
"globalThis.WebGLRenderingContext.prototype.bindBuffer", | |
"globalThis.WebGLRenderingContext.prototype.bindFramebuffer", | |
"globalThis.WebGLRenderingContext.prototype.bindTexture", | |
"globalThis.WebGLRenderingContext.prototype.clear", | |
"globalThis.WebGLRenderingContext.prototype.clearColor", | |
"globalThis.WebGLRenderingContext.prototype.clearDepth", | |
"globalThis.WebGLRenderingContext.prototype.clearStencil", | |
"globalThis.WebGLRenderingContext.prototype.colorMask", | |
"globalThis.WebGLRenderingContext.prototype.disableVertexAttribArray", | |
"globalThis.WebGLRenderingContext.prototype.drawArrays", | |
"globalThis.WebGLRenderingContext.prototype.drawElements", | |
"globalThis.WebGLRenderingContext.prototype.enableVertexAttribArray", | |
"globalThis.WebGLRenderingContext.prototype.scissor", | |
"globalThis.WebGLRenderingContext.prototype.uniform1f", | |
"globalThis.WebGLRenderingContext.prototype.uniform1fv", | |
"globalThis.WebGLRenderingContext.prototype.uniform1i", | |
"globalThis.WebGLRenderingContext.prototype.uniform1iv", | |
"globalThis.WebGLRenderingContext.prototype.uniform2f", | |
"globalThis.WebGLRenderingContext.prototype.uniform2fv", | |
"globalThis.WebGLRenderingContext.prototype.uniform2i", | |
"globalThis.WebGLRenderingContext.prototype.uniform2iv", | |
"globalThis.WebGLRenderingContext.prototype.uniform3f", | |
"globalThis.WebGLRenderingContext.prototype.uniform3fv", | |
"globalThis.WebGLRenderingContext.prototype.uniform3i", | |
"globalThis.WebGLRenderingContext.prototype.uniform3iv", | |
"globalThis.WebGLRenderingContext.prototype.uniform4f", | |
"globalThis.WebGLRenderingContext.prototype.uniform4fv", | |
"globalThis.WebGLRenderingContext.prototype.uniform4i", | |
"globalThis.WebGLRenderingContext.prototype.uniform4iv", | |
"globalThis.WebGLRenderingContext.prototype.uniformMatrix2fv", | |
"globalThis.WebGLRenderingContext.prototype.uniformMatrix3fv", | |
"globalThis.WebGLRenderingContext.prototype.uniformMatrix4fv", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib1f", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib1fv", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib2f", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib2fv", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib3f", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib3fv", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib4f", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttrib4fv", | |
"globalThis.WebGLRenderingContext.prototype.vertexAttribPointer", | |
"globalThis.WebGLRenderingContext.prototype.viewport", | |
"globalThis.WebGLRenderingContext.prototype.drawingBufferFormat", | |
"globalThis.WebGLRenderingContext.prototype.commit", | |
"globalThis.WebGLRenderingContext.prototype.drawingBufferStorage", | |
"globalThis.WebGLRenderingContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLRenderbuffer", | |
"globalThis.WebGLRenderbuffer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLQuery", | |
"globalThis.WebGLQuery.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLProgram", | |
"globalThis.WebGLProgram.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLFramebuffer", | |
"globalThis.WebGLFramebuffer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLContextEvent", | |
"globalThis.WebGLContextEvent.prototype.statusMessage", | |
"globalThis.WebGLContextEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLBuffer", | |
"globalThis.WebGLBuffer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGLActiveInfo", | |
"globalThis.WebGLActiveInfo.prototype.size", | |
"globalThis.WebGLActiveInfo.prototype.type", | |
"globalThis.WebGLActiveInfo.prototype.name", | |
"globalThis.WebGLActiveInfo.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebGL2RenderingContext", | |
"globalThis.WebGL2RenderingContext.prototype.canvas", | |
"globalThis.WebGL2RenderingContext.prototype.drawingBufferWidth", | |
"globalThis.WebGL2RenderingContext.prototype.drawingBufferHeight", | |
"globalThis.WebGL2RenderingContext.prototype.drawingBufferColorSpace", | |
"globalThis.WebGL2RenderingContext.prototype.unpackColorSpace", | |
"globalThis.WebGL2RenderingContext.prototype.activeTexture", | |
"globalThis.WebGL2RenderingContext.prototype.attachShader", | |
"globalThis.WebGL2RenderingContext.prototype.beginQuery", | |
"globalThis.WebGL2RenderingContext.prototype.beginTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.bindAttribLocation", | |
"globalThis.WebGL2RenderingContext.prototype.bindBufferBase", | |
"globalThis.WebGL2RenderingContext.prototype.bindBufferRange", | |
"globalThis.WebGL2RenderingContext.prototype.bindRenderbuffer", | |
"globalThis.WebGL2RenderingContext.prototype.bindSampler", | |
"globalThis.WebGL2RenderingContext.prototype.bindTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.bindVertexArray", | |
"globalThis.WebGL2RenderingContext.prototype.blendColor", | |
"globalThis.WebGL2RenderingContext.prototype.blendEquation", | |
"globalThis.WebGL2RenderingContext.prototype.blendEquationSeparate", | |
"globalThis.WebGL2RenderingContext.prototype.blendFunc", | |
"globalThis.WebGL2RenderingContext.prototype.blendFuncSeparate", | |
"globalThis.WebGL2RenderingContext.prototype.blitFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.bufferData", | |
"globalThis.WebGL2RenderingContext.prototype.bufferSubData", | |
"globalThis.WebGL2RenderingContext.prototype.checkFramebufferStatus", | |
"globalThis.WebGL2RenderingContext.prototype.clientWaitSync", | |
"globalThis.WebGL2RenderingContext.prototype.compileShader", | |
"globalThis.WebGL2RenderingContext.prototype.compressedTexImage2D", | |
"globalThis.WebGL2RenderingContext.prototype.compressedTexImage3D", | |
"globalThis.WebGL2RenderingContext.prototype.compressedTexSubImage2D", | |
"globalThis.WebGL2RenderingContext.prototype.compressedTexSubImage3D", | |
"globalThis.WebGL2RenderingContext.prototype.copyBufferSubData", | |
"globalThis.WebGL2RenderingContext.prototype.copyTexImage2D", | |
"globalThis.WebGL2RenderingContext.prototype.copyTexSubImage2D", | |
"globalThis.WebGL2RenderingContext.prototype.copyTexSubImage3D", | |
"globalThis.WebGL2RenderingContext.prototype.createBuffer", | |
"globalThis.WebGL2RenderingContext.prototype.createFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.createProgram", | |
"globalThis.WebGL2RenderingContext.prototype.createQuery", | |
"globalThis.WebGL2RenderingContext.prototype.createRenderbuffer", | |
"globalThis.WebGL2RenderingContext.prototype.createSampler", | |
"globalThis.WebGL2RenderingContext.prototype.createShader", | |
"globalThis.WebGL2RenderingContext.prototype.createTexture", | |
"globalThis.WebGL2RenderingContext.prototype.createTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.createVertexArray", | |
"globalThis.WebGL2RenderingContext.prototype.cullFace", | |
"globalThis.WebGL2RenderingContext.prototype.deleteBuffer", | |
"globalThis.WebGL2RenderingContext.prototype.deleteFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.deleteProgram", | |
"globalThis.WebGL2RenderingContext.prototype.deleteQuery", | |
"globalThis.WebGL2RenderingContext.prototype.deleteRenderbuffer", | |
"globalThis.WebGL2RenderingContext.prototype.deleteSampler", | |
"globalThis.WebGL2RenderingContext.prototype.deleteShader", | |
"globalThis.WebGL2RenderingContext.prototype.deleteSync", | |
"globalThis.WebGL2RenderingContext.prototype.deleteTexture", | |
"globalThis.WebGL2RenderingContext.prototype.deleteTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.deleteVertexArray", | |
"globalThis.WebGL2RenderingContext.prototype.depthFunc", | |
"globalThis.WebGL2RenderingContext.prototype.depthMask", | |
"globalThis.WebGL2RenderingContext.prototype.depthRange", | |
"globalThis.WebGL2RenderingContext.prototype.detachShader", | |
"globalThis.WebGL2RenderingContext.prototype.disable", | |
"globalThis.WebGL2RenderingContext.prototype.drawArraysInstanced", | |
"globalThis.WebGL2RenderingContext.prototype.drawElementsInstanced", | |
"globalThis.WebGL2RenderingContext.prototype.drawRangeElements", | |
"globalThis.WebGL2RenderingContext.prototype.enable", | |
"globalThis.WebGL2RenderingContext.prototype.endQuery", | |
"globalThis.WebGL2RenderingContext.prototype.endTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.fenceSync", | |
"globalThis.WebGL2RenderingContext.prototype.finish", | |
"globalThis.WebGL2RenderingContext.prototype.flush", | |
"globalThis.WebGL2RenderingContext.prototype.framebufferRenderbuffer", | |
"globalThis.WebGL2RenderingContext.prototype.framebufferTexture2D", | |
"globalThis.WebGL2RenderingContext.prototype.framebufferTextureLayer", | |
"globalThis.WebGL2RenderingContext.prototype.frontFace", | |
"globalThis.WebGL2RenderingContext.prototype.generateMipmap", | |
"globalThis.WebGL2RenderingContext.prototype.getActiveAttrib", | |
"globalThis.WebGL2RenderingContext.prototype.getActiveUniform", | |
"globalThis.WebGL2RenderingContext.prototype.getActiveUniformBlockName", | |
"globalThis.WebGL2RenderingContext.prototype.getActiveUniformBlockParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getActiveUniforms", | |
"globalThis.WebGL2RenderingContext.prototype.getAttachedShaders", | |
"globalThis.WebGL2RenderingContext.prototype.getAttribLocation", | |
"globalThis.WebGL2RenderingContext.prototype.getBufferParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getBufferSubData", | |
"globalThis.WebGL2RenderingContext.prototype.getContextAttributes", | |
"globalThis.WebGL2RenderingContext.prototype.getError", | |
"globalThis.WebGL2RenderingContext.prototype.getExtension", | |
"globalThis.WebGL2RenderingContext.prototype.getFragDataLocation", | |
"globalThis.WebGL2RenderingContext.prototype.getFramebufferAttachmentParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getIndexedParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getInternalformatParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getProgramInfoLog", | |
"globalThis.WebGL2RenderingContext.prototype.getProgramParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getQuery", | |
"globalThis.WebGL2RenderingContext.prototype.getQueryParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getRenderbufferParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getSamplerParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getShaderInfoLog", | |
"globalThis.WebGL2RenderingContext.prototype.getShaderParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getShaderPrecisionFormat", | |
"globalThis.WebGL2RenderingContext.prototype.getShaderSource", | |
"globalThis.WebGL2RenderingContext.prototype.getSupportedExtensions", | |
"globalThis.WebGL2RenderingContext.prototype.getSyncParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getTexParameter", | |
"globalThis.WebGL2RenderingContext.prototype.getTransformFeedbackVarying", | |
"globalThis.WebGL2RenderingContext.prototype.getUniform", | |
"globalThis.WebGL2RenderingContext.prototype.getUniformBlockIndex", | |
"globalThis.WebGL2RenderingContext.prototype.getUniformIndices", | |
"globalThis.WebGL2RenderingContext.prototype.getUniformLocation", | |
"globalThis.WebGL2RenderingContext.prototype.getVertexAttrib", | |
"globalThis.WebGL2RenderingContext.prototype.getVertexAttribOffset", | |
"globalThis.WebGL2RenderingContext.prototype.hint", | |
"globalThis.WebGL2RenderingContext.prototype.invalidateFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.invalidateSubFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.isBuffer", | |
"globalThis.WebGL2RenderingContext.prototype.isContextLost", | |
"globalThis.WebGL2RenderingContext.prototype.isEnabled", | |
"globalThis.WebGL2RenderingContext.prototype.isFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.isProgram", | |
"globalThis.WebGL2RenderingContext.prototype.isQuery", | |
"globalThis.WebGL2RenderingContext.prototype.isRenderbuffer", | |
"globalThis.WebGL2RenderingContext.prototype.isSampler", | |
"globalThis.WebGL2RenderingContext.prototype.isShader", | |
"globalThis.WebGL2RenderingContext.prototype.isSync", | |
"globalThis.WebGL2RenderingContext.prototype.isTexture", | |
"globalThis.WebGL2RenderingContext.prototype.isTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.isVertexArray", | |
"globalThis.WebGL2RenderingContext.prototype.lineWidth", | |
"globalThis.WebGL2RenderingContext.prototype.linkProgram", | |
"globalThis.WebGL2RenderingContext.prototype.pauseTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.pixelStorei", | |
"globalThis.WebGL2RenderingContext.prototype.polygonOffset", | |
"globalThis.WebGL2RenderingContext.prototype.readBuffer", | |
"globalThis.WebGL2RenderingContext.prototype.readPixels", | |
"globalThis.WebGL2RenderingContext.prototype.renderbufferStorage", | |
"globalThis.WebGL2RenderingContext.prototype.renderbufferStorageMultisample", | |
"globalThis.WebGL2RenderingContext.prototype.resumeTransformFeedback", | |
"globalThis.WebGL2RenderingContext.prototype.sampleCoverage", | |
"globalThis.WebGL2RenderingContext.prototype.samplerParameterf", | |
"globalThis.WebGL2RenderingContext.prototype.samplerParameteri", | |
"globalThis.WebGL2RenderingContext.prototype.shaderSource", | |
"globalThis.WebGL2RenderingContext.prototype.stencilFunc", | |
"globalThis.WebGL2RenderingContext.prototype.stencilFuncSeparate", | |
"globalThis.WebGL2RenderingContext.prototype.stencilMask", | |
"globalThis.WebGL2RenderingContext.prototype.stencilMaskSeparate", | |
"globalThis.WebGL2RenderingContext.prototype.stencilOp", | |
"globalThis.WebGL2RenderingContext.prototype.stencilOpSeparate", | |
"globalThis.WebGL2RenderingContext.prototype.texImage2D", | |
"globalThis.WebGL2RenderingContext.prototype.texImage3D", | |
"globalThis.WebGL2RenderingContext.prototype.texParameterf", | |
"globalThis.WebGL2RenderingContext.prototype.texParameteri", | |
"globalThis.WebGL2RenderingContext.prototype.texStorage2D", | |
"globalThis.WebGL2RenderingContext.prototype.texStorage3D", | |
"globalThis.WebGL2RenderingContext.prototype.texSubImage2D", | |
"globalThis.WebGL2RenderingContext.prototype.texSubImage3D", | |
"globalThis.WebGL2RenderingContext.prototype.transformFeedbackVaryings", | |
"globalThis.WebGL2RenderingContext.prototype.uniform1ui", | |
"globalThis.WebGL2RenderingContext.prototype.uniform2ui", | |
"globalThis.WebGL2RenderingContext.prototype.uniform3ui", | |
"globalThis.WebGL2RenderingContext.prototype.uniform4ui", | |
"globalThis.WebGL2RenderingContext.prototype.uniformBlockBinding", | |
"globalThis.WebGL2RenderingContext.prototype.useProgram", | |
"globalThis.WebGL2RenderingContext.prototype.validateProgram", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribDivisor", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribI4i", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribI4ui", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribIPointer", | |
"globalThis.WebGL2RenderingContext.prototype.waitSync", | |
"globalThis.WebGL2RenderingContext.prototype.bindBuffer", | |
"globalThis.WebGL2RenderingContext.prototype.bindFramebuffer", | |
"globalThis.WebGL2RenderingContext.prototype.bindTexture", | |
"globalThis.WebGL2RenderingContext.prototype.clear", | |
"globalThis.WebGL2RenderingContext.prototype.clearBufferfi", | |
"globalThis.WebGL2RenderingContext.prototype.clearBufferfv", | |
"globalThis.WebGL2RenderingContext.prototype.clearBufferiv", | |
"globalThis.WebGL2RenderingContext.prototype.clearBufferuiv", | |
"globalThis.WebGL2RenderingContext.prototype.clearColor", | |
"globalThis.WebGL2RenderingContext.prototype.clearDepth", | |
"globalThis.WebGL2RenderingContext.prototype.clearStencil", | |
"globalThis.WebGL2RenderingContext.prototype.colorMask", | |
"globalThis.WebGL2RenderingContext.prototype.disableVertexAttribArray", | |
"globalThis.WebGL2RenderingContext.prototype.drawArrays", | |
"globalThis.WebGL2RenderingContext.prototype.drawBuffers", | |
"globalThis.WebGL2RenderingContext.prototype.drawElements", | |
"globalThis.WebGL2RenderingContext.prototype.enableVertexAttribArray", | |
"globalThis.WebGL2RenderingContext.prototype.scissor", | |
"globalThis.WebGL2RenderingContext.prototype.uniform1f", | |
"globalThis.WebGL2RenderingContext.prototype.uniform1fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform1i", | |
"globalThis.WebGL2RenderingContext.prototype.uniform1iv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform1uiv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform2f", | |
"globalThis.WebGL2RenderingContext.prototype.uniform2fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform2i", | |
"globalThis.WebGL2RenderingContext.prototype.uniform2iv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform2uiv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform3f", | |
"globalThis.WebGL2RenderingContext.prototype.uniform3fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform3i", | |
"globalThis.WebGL2RenderingContext.prototype.uniform3iv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform3uiv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform4f", | |
"globalThis.WebGL2RenderingContext.prototype.uniform4fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform4i", | |
"globalThis.WebGL2RenderingContext.prototype.uniform4iv", | |
"globalThis.WebGL2RenderingContext.prototype.uniform4uiv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix2fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix2x3fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix2x4fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix3fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix3x2fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix3x4fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix4fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix4x2fv", | |
"globalThis.WebGL2RenderingContext.prototype.uniformMatrix4x3fv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib1f", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib1fv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib2f", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib2fv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib3f", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib3fv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib4f", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttrib4fv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribI4iv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribI4uiv", | |
"globalThis.WebGL2RenderingContext.prototype.vertexAttribPointer", | |
"globalThis.WebGL2RenderingContext.prototype.viewport", | |
"globalThis.WebGL2RenderingContext.prototype.drawingBufferFormat", | |
"globalThis.WebGL2RenderingContext.prototype.commit", | |
"globalThis.WebGL2RenderingContext.prototype.drawingBufferStorage", | |
"globalThis.WebGL2RenderingContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WaveShaperNode", | |
"globalThis.WaveShaperNode.prototype.curve", | |
"globalThis.WaveShaperNode.prototype.oversample", | |
"globalThis.WaveShaperNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VisualViewport", | |
"globalThis.VisualViewport.prototype.offsetLeft", | |
"globalThis.VisualViewport.prototype.offsetTop", | |
"globalThis.VisualViewport.prototype.pageLeft", | |
"globalThis.VisualViewport.prototype.pageTop", | |
"globalThis.VisualViewport.prototype.width", | |
"globalThis.VisualViewport.prototype.height", | |
"globalThis.VisualViewport.prototype.scale", | |
"globalThis.VisualViewport.prototype.onresize", | |
"globalThis.VisualViewport.prototype.onscroll", | |
"globalThis.VisualViewport.prototype.segments", | |
"globalThis.VisualViewport.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VirtualKeyboardGeometryChangeEvent", | |
"globalThis.VirtualKeyboardGeometryChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ViewTransition", | |
"globalThis.ViewTransition.prototype.finished", | |
"globalThis.ViewTransition.prototype.ready", | |
"globalThis.ViewTransition.prototype.updateCallbackDone", | |
"globalThis.ViewTransition.prototype.skipTransition", | |
"globalThis.ViewTransition.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VideoFrame", | |
"globalThis.VideoFrame.prototype.format", | |
"globalThis.VideoFrame.prototype.timestamp", | |
"globalThis.VideoFrame.prototype.duration", | |
"globalThis.VideoFrame.prototype.codedWidth", | |
"globalThis.VideoFrame.prototype.codedHeight", | |
"globalThis.VideoFrame.prototype.codedRect", | |
"globalThis.VideoFrame.prototype.visibleRect", | |
"globalThis.VideoFrame.prototype.displayWidth", | |
"globalThis.VideoFrame.prototype.displayHeight", | |
"globalThis.VideoFrame.prototype.colorSpace", | |
"globalThis.VideoFrame.prototype.allocationSize", | |
"globalThis.VideoFrame.prototype.clone", | |
"globalThis.VideoFrame.prototype.close", | |
"globalThis.VideoFrame.prototype.copyTo", | |
"globalThis.VideoFrame.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VideoColorSpace", | |
"globalThis.VideoColorSpace.prototype.primaries", | |
"globalThis.VideoColorSpace.prototype.transfer", | |
"globalThis.VideoColorSpace.prototype.matrix", | |
"globalThis.VideoColorSpace.prototype.fullRange", | |
"globalThis.VideoColorSpace.prototype.toJSON", | |
"globalThis.VideoColorSpace.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ValidityState", | |
"globalThis.ValidityState.prototype.valueMissing", | |
"globalThis.ValidityState.prototype.typeMismatch", | |
"globalThis.ValidityState.prototype.patternMismatch", | |
"globalThis.ValidityState.prototype.tooLong", | |
"globalThis.ValidityState.prototype.tooShort", | |
"globalThis.ValidityState.prototype.rangeUnderflow", | |
"globalThis.ValidityState.prototype.rangeOverflow", | |
"globalThis.ValidityState.prototype.stepMismatch", | |
"globalThis.ValidityState.prototype.badInput", | |
"globalThis.ValidityState.prototype.customError", | |
"globalThis.ValidityState.prototype.valid", | |
"globalThis.ValidityState.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VTTCue", | |
"globalThis.VTTCue.prototype.vertical", | |
"globalThis.VTTCue.prototype.snapToLines", | |
"globalThis.VTTCue.prototype.line", | |
"globalThis.VTTCue.prototype.position", | |
"globalThis.VTTCue.prototype.size", | |
"globalThis.VTTCue.prototype.align", | |
"globalThis.VTTCue.prototype.text", | |
"globalThis.VTTCue.prototype.getCueAsHTML", | |
"globalThis.VTTCue.prototype.region", | |
"globalThis.VTTCue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.UserActivation", | |
"globalThis.UserActivation.prototype.hasBeenActive", | |
"globalThis.UserActivation.prototype.isActive", | |
"globalThis.UserActivation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.URLSearchParams", | |
"globalThis.URLSearchParams.prototype.size", | |
"globalThis.URLSearchParams.prototype.append", | |
"globalThis.URLSearchParams.prototype.delete", | |
"globalThis.URLSearchParams.prototype.get", | |
"globalThis.URLSearchParams.prototype.getAll", | |
"globalThis.URLSearchParams.prototype.has", | |
"globalThis.URLSearchParams.prototype.set", | |
"globalThis.URLSearchParams.prototype.sort", | |
"globalThis.URLSearchParams.prototype.toString", | |
"globalThis.URLSearchParams.prototype.entries", | |
"globalThis.URLSearchParams.prototype.forEach", | |
"globalThis.URLSearchParams.prototype.keys", | |
"globalThis.URLSearchParams.prototype.values", | |
"globalThis.URLSearchParams.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.URLSearchParams.prototype.Symbol(Symbol.iterator)", | |
"globalThis.URLPattern", | |
"globalThis.URLPattern.prototype.protocol", | |
"globalThis.URLPattern.prototype.username", | |
"globalThis.URLPattern.prototype.password", | |
"globalThis.URLPattern.prototype.hostname", | |
"globalThis.URLPattern.prototype.port", | |
"globalThis.URLPattern.prototype.pathname", | |
"globalThis.URLPattern.prototype.search", | |
"globalThis.URLPattern.prototype.hash", | |
"globalThis.URLPattern.prototype.exec", | |
"globalThis.URLPattern.prototype.test", | |
"globalThis.URLPattern.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.URLPattern.compareComponent", | |
"globalThis.URL", | |
"globalThis.URL.prototype.origin", | |
"globalThis.URL.prototype.protocol", | |
"globalThis.URL.prototype.username", | |
"globalThis.URL.prototype.password", | |
"globalThis.URL.prototype.host", | |
"globalThis.URL.prototype.hostname", | |
"globalThis.URL.prototype.port", | |
"globalThis.URL.prototype.pathname", | |
"globalThis.URL.prototype.search", | |
"globalThis.URL.prototype.searchParams", | |
"globalThis.URL.prototype.hash", | |
"globalThis.URL.prototype.href", | |
"globalThis.URL.prototype.toJSON", | |
"globalThis.URL.prototype.toString", | |
"globalThis.URL.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.URL.canParse", | |
"globalThis.URL.createObjectURL", | |
"globalThis.URL.revokeObjectURL", | |
"globalThis.UIEvent", | |
"globalThis.UIEvent.prototype.view", | |
"globalThis.UIEvent.prototype.detail", | |
"globalThis.UIEvent.prototype.sourceCapabilities", | |
"globalThis.UIEvent.prototype.which", | |
"globalThis.UIEvent.prototype.initUIEvent", | |
"globalThis.UIEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrustedTypePolicyFactory", | |
"globalThis.TrustedTypePolicyFactory.prototype.emptyHTML", | |
"globalThis.TrustedTypePolicyFactory.prototype.emptyScript", | |
"globalThis.TrustedTypePolicyFactory.prototype.defaultPolicy", | |
"globalThis.TrustedTypePolicyFactory.prototype.createPolicy", | |
"globalThis.TrustedTypePolicyFactory.prototype.getAttributeType", | |
"globalThis.TrustedTypePolicyFactory.prototype.getPropertyType", | |
"globalThis.TrustedTypePolicyFactory.prototype.getTypeMapping", | |
"globalThis.TrustedTypePolicyFactory.prototype.isHTML", | |
"globalThis.TrustedTypePolicyFactory.prototype.isScript", | |
"globalThis.TrustedTypePolicyFactory.prototype.isScriptURL", | |
"globalThis.TrustedTypePolicyFactory.prototype.onbeforecreatepolicy", | |
"globalThis.TrustedTypePolicyFactory.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrustedTypePolicy", | |
"globalThis.TrustedTypePolicy.prototype.name", | |
"globalThis.TrustedTypePolicy.prototype.createHTML", | |
"globalThis.TrustedTypePolicy.prototype.createScript", | |
"globalThis.TrustedTypePolicy.prototype.createScriptURL", | |
"globalThis.TrustedTypePolicy.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrustedScriptURL", | |
"globalThis.TrustedScriptURL.prototype.toJSON", | |
"globalThis.TrustedScriptURL.prototype.toString", | |
"globalThis.TrustedScriptURL.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrustedScriptURL.fromLiteral", | |
"globalThis.TrustedScript", | |
"globalThis.TrustedScript.prototype.toJSON", | |
"globalThis.TrustedScript.prototype.toString", | |
"globalThis.TrustedScript.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrustedScript.fromLiteral", | |
"globalThis.TrustedHTML", | |
"globalThis.TrustedHTML.prototype.toJSON", | |
"globalThis.TrustedHTML.prototype.toString", | |
"globalThis.TrustedHTML.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrustedHTML.fromLiteral", | |
"globalThis.TreeWalker", | |
"globalThis.TreeWalker.prototype.root", | |
"globalThis.TreeWalker.prototype.whatToShow", | |
"globalThis.TreeWalker.prototype.filter", | |
"globalThis.TreeWalker.prototype.currentNode", | |
"globalThis.TreeWalker.prototype.firstChild", | |
"globalThis.TreeWalker.prototype.lastChild", | |
"globalThis.TreeWalker.prototype.nextNode", | |
"globalThis.TreeWalker.prototype.nextSibling", | |
"globalThis.TreeWalker.prototype.parentNode", | |
"globalThis.TreeWalker.prototype.previousNode", | |
"globalThis.TreeWalker.prototype.previousSibling", | |
"globalThis.TreeWalker.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TransitionEvent", | |
"globalThis.TransitionEvent.prototype.propertyName", | |
"globalThis.TransitionEvent.prototype.elapsedTime", | |
"globalThis.TransitionEvent.prototype.pseudoElement", | |
"globalThis.TransitionEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TransformStreamDefaultController", | |
"globalThis.TransformStreamDefaultController.prototype.desiredSize", | |
"globalThis.TransformStreamDefaultController.prototype.enqueue", | |
"globalThis.TransformStreamDefaultController.prototype.error", | |
"globalThis.TransformStreamDefaultController.prototype.terminate", | |
"globalThis.TransformStreamDefaultController.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TransformStream", | |
"globalThis.TransformStream.prototype.readable", | |
"globalThis.TransformStream.prototype.writable", | |
"globalThis.TransformStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrackEvent", | |
"globalThis.TrackEvent.prototype.track", | |
"globalThis.TrackEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TouchList", | |
"globalThis.TouchList.prototype.length", | |
"globalThis.TouchList.prototype.item", | |
"globalThis.TouchList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TouchList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.TouchEvent", | |
"globalThis.TouchEvent.prototype.touches", | |
"globalThis.TouchEvent.prototype.targetTouches", | |
"globalThis.TouchEvent.prototype.changedTouches", | |
"globalThis.TouchEvent.prototype.altKey", | |
"globalThis.TouchEvent.prototype.metaKey", | |
"globalThis.TouchEvent.prototype.ctrlKey", | |
"globalThis.TouchEvent.prototype.shiftKey", | |
"globalThis.TouchEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Touch", | |
"globalThis.Touch.prototype.identifier", | |
"globalThis.Touch.prototype.target", | |
"globalThis.Touch.prototype.screenX", | |
"globalThis.Touch.prototype.screenY", | |
"globalThis.Touch.prototype.clientX", | |
"globalThis.Touch.prototype.clientY", | |
"globalThis.Touch.prototype.pageX", | |
"globalThis.Touch.prototype.pageY", | |
"globalThis.Touch.prototype.radiusX", | |
"globalThis.Touch.prototype.radiusY", | |
"globalThis.Touch.prototype.rotationAngle", | |
"globalThis.Touch.prototype.force", | |
"globalThis.Touch.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ToggleEvent", | |
"globalThis.ToggleEvent.prototype.oldState", | |
"globalThis.ToggleEvent.prototype.newState", | |
"globalThis.ToggleEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TimeRanges", | |
"globalThis.TimeRanges.prototype.length", | |
"globalThis.TimeRanges.prototype.end", | |
"globalThis.TimeRanges.prototype.start", | |
"globalThis.TimeRanges.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextTrackList", | |
"globalThis.TextTrackList.prototype.length", | |
"globalThis.TextTrackList.prototype.onchange", | |
"globalThis.TextTrackList.prototype.onaddtrack", | |
"globalThis.TextTrackList.prototype.onremovetrack", | |
"globalThis.TextTrackList.prototype.getTrackById", | |
"globalThis.TextTrackList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextTrackList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.TextTrackCueList", | |
"globalThis.TextTrackCueList.prototype.length", | |
"globalThis.TextTrackCueList.prototype.getCueById", | |
"globalThis.TextTrackCueList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextTrackCueList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.TextTrackCue", | |
"globalThis.TextTrackCue.prototype.track", | |
"globalThis.TextTrackCue.prototype.id", | |
"globalThis.TextTrackCue.prototype.startTime", | |
"globalThis.TextTrackCue.prototype.endTime", | |
"globalThis.TextTrackCue.prototype.pauseOnExit", | |
"globalThis.TextTrackCue.prototype.onenter", | |
"globalThis.TextTrackCue.prototype.onexit", | |
"globalThis.TextTrackCue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextTrack", | |
"globalThis.TextTrack.prototype.kind", | |
"globalThis.TextTrack.prototype.label", | |
"globalThis.TextTrack.prototype.language", | |
"globalThis.TextTrack.prototype.id", | |
"globalThis.TextTrack.prototype.mode", | |
"globalThis.TextTrack.prototype.cues", | |
"globalThis.TextTrack.prototype.activeCues", | |
"globalThis.TextTrack.prototype.oncuechange", | |
"globalThis.TextTrack.prototype.addCue", | |
"globalThis.TextTrack.prototype.removeCue", | |
"globalThis.TextTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextMetrics", | |
"globalThis.TextMetrics.prototype.width", | |
"globalThis.TextMetrics.prototype.actualBoundingBoxLeft", | |
"globalThis.TextMetrics.prototype.actualBoundingBoxRight", | |
"globalThis.TextMetrics.prototype.fontBoundingBoxAscent", | |
"globalThis.TextMetrics.prototype.fontBoundingBoxDescent", | |
"globalThis.TextMetrics.prototype.actualBoundingBoxAscent", | |
"globalThis.TextMetrics.prototype.actualBoundingBoxDescent", | |
"globalThis.TextMetrics.prototype.advances", | |
"globalThis.TextMetrics.prototype.emHeightAscent", | |
"globalThis.TextMetrics.prototype.emHeightDescent", | |
"globalThis.TextMetrics.prototype.hangingBaseline", | |
"globalThis.TextMetrics.prototype.alphabeticBaseline", | |
"globalThis.TextMetrics.prototype.ideographicBaseline", | |
"globalThis.TextMetrics.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextEvent", | |
"globalThis.TextEvent.prototype.data", | |
"globalThis.TextEvent.prototype.initTextEvent", | |
"globalThis.TextEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextEncoderStream", | |
"globalThis.TextEncoderStream.prototype.encoding", | |
"globalThis.TextEncoderStream.prototype.readable", | |
"globalThis.TextEncoderStream.prototype.writable", | |
"globalThis.TextEncoderStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextEncoder", | |
"globalThis.TextEncoder.prototype.encoding", | |
"globalThis.TextEncoder.prototype.encode", | |
"globalThis.TextEncoder.prototype.encodeInto", | |
"globalThis.TextEncoder.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextDecoderStream", | |
"globalThis.TextDecoderStream.prototype.encoding", | |
"globalThis.TextDecoderStream.prototype.fatal", | |
"globalThis.TextDecoderStream.prototype.ignoreBOM", | |
"globalThis.TextDecoderStream.prototype.readable", | |
"globalThis.TextDecoderStream.prototype.writable", | |
"globalThis.TextDecoderStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextDecoder", | |
"globalThis.TextDecoder.prototype.encoding", | |
"globalThis.TextDecoder.prototype.fatal", | |
"globalThis.TextDecoder.prototype.ignoreBOM", | |
"globalThis.TextDecoder.prototype.decode", | |
"globalThis.TextDecoder.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Text", | |
"globalThis.Text.prototype.wholeText", | |
"globalThis.Text.prototype.assignedSlot", | |
"globalThis.Text.prototype.splitText", | |
"globalThis.Text.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TaskSignal", | |
"globalThis.TaskSignal.prototype.priority", | |
"globalThis.TaskSignal.prototype.onprioritychange", | |
"globalThis.TaskSignal.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TaskSignal.any", | |
"globalThis.TaskPriorityChangeEvent", | |
"globalThis.TaskPriorityChangeEvent.prototype.previousPriority", | |
"globalThis.TaskPriorityChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TaskController", | |
"globalThis.TaskController.prototype.setPriority", | |
"globalThis.TaskController.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TaskAttributionTiming", | |
"globalThis.TaskAttributionTiming.prototype.containerType", | |
"globalThis.TaskAttributionTiming.prototype.containerSrc", | |
"globalThis.TaskAttributionTiming.prototype.containerId", | |
"globalThis.TaskAttributionTiming.prototype.containerName", | |
"globalThis.TaskAttributionTiming.prototype.toJSON", | |
"globalThis.TaskAttributionTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SyncManager", | |
"globalThis.SyncManager.prototype.getTags", | |
"globalThis.SyncManager.prototype.register", | |
"globalThis.SyncManager.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SubmitEvent", | |
"globalThis.SubmitEvent.prototype.submitter", | |
"globalThis.SubmitEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StyleSheetList", | |
"globalThis.StyleSheetList.prototype.length", | |
"globalThis.StyleSheetList.prototype.item", | |
"globalThis.StyleSheetList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StyleSheetList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.StyleSheet", | |
"globalThis.StyleSheet.prototype.type", | |
"globalThis.StyleSheet.prototype.href", | |
"globalThis.StyleSheet.prototype.ownerNode", | |
"globalThis.StyleSheet.prototype.parentStyleSheet", | |
"globalThis.StyleSheet.prototype.title", | |
"globalThis.StyleSheet.prototype.media", | |
"globalThis.StyleSheet.prototype.disabled", | |
"globalThis.StyleSheet.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StylePropertyMapReadOnly", | |
"globalThis.StylePropertyMapReadOnly.prototype.size", | |
"globalThis.StylePropertyMapReadOnly.prototype.get", | |
"globalThis.StylePropertyMapReadOnly.prototype.getAll", | |
"globalThis.StylePropertyMapReadOnly.prototype.has", | |
"globalThis.StylePropertyMapReadOnly.prototype.entries", | |
"globalThis.StylePropertyMapReadOnly.prototype.forEach", | |
"globalThis.StylePropertyMapReadOnly.prototype.keys", | |
"globalThis.StylePropertyMapReadOnly.prototype.values", | |
"globalThis.StylePropertyMapReadOnly.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StylePropertyMapReadOnly.prototype.Symbol(Symbol.iterator)", | |
"globalThis.StylePropertyMap", | |
"globalThis.StylePropertyMap.prototype.append", | |
"globalThis.StylePropertyMap.prototype.clear", | |
"globalThis.StylePropertyMap.prototype.delete", | |
"globalThis.StylePropertyMap.prototype.set", | |
"globalThis.StylePropertyMap.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StorageEvent", | |
"globalThis.StorageEvent.prototype.key", | |
"globalThis.StorageEvent.prototype.oldValue", | |
"globalThis.StorageEvent.prototype.newValue", | |
"globalThis.StorageEvent.prototype.url", | |
"globalThis.StorageEvent.prototype.storageArea", | |
"globalThis.StorageEvent.prototype.initStorageEvent", | |
"globalThis.StorageEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Storage", | |
"globalThis.Storage.prototype.length", | |
"globalThis.Storage.prototype.clear", | |
"globalThis.Storage.prototype.getItem", | |
"globalThis.Storage.prototype.key", | |
"globalThis.Storage.prototype.removeItem", | |
"globalThis.Storage.prototype.setItem", | |
"globalThis.Storage.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StereoPannerNode", | |
"globalThis.StereoPannerNode.prototype.pan", | |
"globalThis.StereoPannerNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.StaticRange", | |
"globalThis.StaticRange.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SourceBufferList", | |
"globalThis.SourceBufferList.prototype.length", | |
"globalThis.SourceBufferList.prototype.onaddsourcebuffer", | |
"globalThis.SourceBufferList.prototype.onremovesourcebuffer", | |
"globalThis.SourceBufferList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SourceBufferList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.SourceBuffer", | |
"globalThis.SourceBuffer.prototype.mode", | |
"globalThis.SourceBuffer.prototype.updating", | |
"globalThis.SourceBuffer.prototype.buffered", | |
"globalThis.SourceBuffer.prototype.timestampOffset", | |
"globalThis.SourceBuffer.prototype.appendWindowStart", | |
"globalThis.SourceBuffer.prototype.appendWindowEnd", | |
"globalThis.SourceBuffer.prototype.onupdatestart", | |
"globalThis.SourceBuffer.prototype.onupdate", | |
"globalThis.SourceBuffer.prototype.onupdateend", | |
"globalThis.SourceBuffer.prototype.onerror", | |
"globalThis.SourceBuffer.prototype.onabort", | |
"globalThis.SourceBuffer.prototype.abort", | |
"globalThis.SourceBuffer.prototype.appendBuffer", | |
"globalThis.SourceBuffer.prototype.changeType", | |
"globalThis.SourceBuffer.prototype.remove", | |
"globalThis.SourceBuffer.prototype.audioTracks", | |
"globalThis.SourceBuffer.prototype.videoTracks", | |
"globalThis.SourceBuffer.prototype.trackDefaults", | |
"globalThis.SourceBuffer.prototype.appendEncodedChunks", | |
"globalThis.SourceBuffer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ShadowRoot", | |
"globalThis.ShadowRoot.prototype.mode", | |
"globalThis.ShadowRoot.prototype.host", | |
"globalThis.ShadowRoot.prototype.onslotchange", | |
"globalThis.ShadowRoot.prototype.innerHTML", | |
"globalThis.ShadowRoot.prototype.delegatesFocus", | |
"globalThis.ShadowRoot.prototype.slotAssignment", | |
"globalThis.ShadowRoot.prototype.activeElement", | |
"globalThis.ShadowRoot.prototype.styleSheets", | |
"globalThis.ShadowRoot.prototype.pointerLockElement", | |
"globalThis.ShadowRoot.prototype.fullscreenElement", | |
"globalThis.ShadowRoot.prototype.adoptedStyleSheets", | |
"globalThis.ShadowRoot.prototype.pictureInPictureElement", | |
"globalThis.ShadowRoot.prototype.elementFromPoint", | |
"globalThis.ShadowRoot.prototype.elementsFromPoint", | |
"globalThis.ShadowRoot.prototype.getInnerHTML", | |
"globalThis.ShadowRoot.prototype.getSelection", | |
"globalThis.ShadowRoot.prototype.registry", | |
"globalThis.ShadowRoot.prototype.createElement", | |
"globalThis.ShadowRoot.prototype.createElementNS", | |
"globalThis.ShadowRoot.prototype.getAnimations", | |
"globalThis.ShadowRoot.prototype.setHTMLUnsafe", | |
"globalThis.ShadowRoot.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Selection", | |
"globalThis.Selection.prototype.anchorNode", | |
"globalThis.Selection.prototype.anchorOffset", | |
"globalThis.Selection.prototype.focusNode", | |
"globalThis.Selection.prototype.focusOffset", | |
"globalThis.Selection.prototype.isCollapsed", | |
"globalThis.Selection.prototype.rangeCount", | |
"globalThis.Selection.prototype.type", | |
"globalThis.Selection.prototype.baseNode", | |
"globalThis.Selection.prototype.baseOffset", | |
"globalThis.Selection.prototype.extentNode", | |
"globalThis.Selection.prototype.extentOffset", | |
"globalThis.Selection.prototype.addRange", | |
"globalThis.Selection.prototype.collapse", | |
"globalThis.Selection.prototype.collapseToEnd", | |
"globalThis.Selection.prototype.collapseToStart", | |
"globalThis.Selection.prototype.containsNode", | |
"globalThis.Selection.prototype.deleteFromDocument", | |
"globalThis.Selection.prototype.empty", | |
"globalThis.Selection.prototype.extend", | |
"globalThis.Selection.prototype.getRangeAt", | |
"globalThis.Selection.prototype.modify", | |
"globalThis.Selection.prototype.removeAllRanges", | |
"globalThis.Selection.prototype.removeRange", | |
"globalThis.Selection.prototype.selectAllChildren", | |
"globalThis.Selection.prototype.setBaseAndExtent", | |
"globalThis.Selection.prototype.setPosition", | |
"globalThis.Selection.prototype.toString", | |
"globalThis.Selection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SecurityPolicyViolationEvent", | |
"globalThis.SecurityPolicyViolationEvent.prototype.documentURI", | |
"globalThis.SecurityPolicyViolationEvent.prototype.referrer", | |
"globalThis.SecurityPolicyViolationEvent.prototype.blockedURI", | |
"globalThis.SecurityPolicyViolationEvent.prototype.violatedDirective", | |
"globalThis.SecurityPolicyViolationEvent.prototype.effectiveDirective", | |
"globalThis.SecurityPolicyViolationEvent.prototype.originalPolicy", | |
"globalThis.SecurityPolicyViolationEvent.prototype.disposition", | |
"globalThis.SecurityPolicyViolationEvent.prototype.sourceFile", | |
"globalThis.SecurityPolicyViolationEvent.prototype.statusCode", | |
"globalThis.SecurityPolicyViolationEvent.prototype.lineNumber", | |
"globalThis.SecurityPolicyViolationEvent.prototype.columnNumber", | |
"globalThis.SecurityPolicyViolationEvent.prototype.sample", | |
"globalThis.SecurityPolicyViolationEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ScriptProcessorNode", | |
"globalThis.ScriptProcessorNode.prototype.onaudioprocess", | |
"globalThis.ScriptProcessorNode.prototype.bufferSize", | |
"globalThis.ScriptProcessorNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ScreenOrientation", | |
"globalThis.ScreenOrientation.prototype.angle", | |
"globalThis.ScreenOrientation.prototype.type", | |
"globalThis.ScreenOrientation.prototype.onchange", | |
"globalThis.ScreenOrientation.prototype.lock", | |
"globalThis.ScreenOrientation.prototype.unlock", | |
"globalThis.ScreenOrientation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Screen", | |
"globalThis.Screen.prototype.availWidth", | |
"globalThis.Screen.prototype.availHeight", | |
"globalThis.Screen.prototype.width", | |
"globalThis.Screen.prototype.height", | |
"globalThis.Screen.prototype.colorDepth", | |
"globalThis.Screen.prototype.pixelDepth", | |
"globalThis.Screen.prototype.availLeft", | |
"globalThis.Screen.prototype.availTop", | |
"globalThis.Screen.prototype.orientation", | |
"globalThis.Screen.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Scheduling", | |
"globalThis.Scheduling.prototype.isInputPending", | |
"globalThis.Scheduling.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Scheduler", | |
"globalThis.Scheduler.prototype.postTask", | |
"globalThis.Scheduler.prototype.yield", | |
"globalThis.Scheduler.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGViewElement", | |
"globalThis.SVGViewElement.prototype.viewBox", | |
"globalThis.SVGViewElement.prototype.preserveAspectRatio", | |
"globalThis.SVGViewElement.prototype.zoomAndPan", | |
"globalThis.SVGViewElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGUseElement", | |
"globalThis.SVGUseElement.prototype.x", | |
"globalThis.SVGUseElement.prototype.y", | |
"globalThis.SVGUseElement.prototype.width", | |
"globalThis.SVGUseElement.prototype.height", | |
"globalThis.SVGUseElement.prototype.href", | |
"globalThis.SVGUseElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGUnitTypes", | |
"globalThis.SVGUnitTypes.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTransformList", | |
"globalThis.SVGTransformList.prototype.length", | |
"globalThis.SVGTransformList.prototype.numberOfItems", | |
"globalThis.SVGTransformList.prototype.appendItem", | |
"globalThis.SVGTransformList.prototype.clear", | |
"globalThis.SVGTransformList.prototype.consolidate", | |
"globalThis.SVGTransformList.prototype.createSVGTransformFromMatrix", | |
"globalThis.SVGTransformList.prototype.getItem", | |
"globalThis.SVGTransformList.prototype.initialize", | |
"globalThis.SVGTransformList.prototype.insertItemBefore", | |
"globalThis.SVGTransformList.prototype.removeItem", | |
"globalThis.SVGTransformList.prototype.replaceItem", | |
"globalThis.SVGTransformList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTransformList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.SVGTransform", | |
"globalThis.SVGTransform.prototype.type", | |
"globalThis.SVGTransform.prototype.matrix", | |
"globalThis.SVGTransform.prototype.angle", | |
"globalThis.SVGTransform.prototype.setMatrix", | |
"globalThis.SVGTransform.prototype.setRotate", | |
"globalThis.SVGTransform.prototype.setScale", | |
"globalThis.SVGTransform.prototype.setSkewX", | |
"globalThis.SVGTransform.prototype.setSkewY", | |
"globalThis.SVGTransform.prototype.setTranslate", | |
"globalThis.SVGTransform.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTitleElement", | |
"globalThis.SVGTitleElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTextPositioningElement", | |
"globalThis.SVGTextPositioningElement.prototype.x", | |
"globalThis.SVGTextPositioningElement.prototype.y", | |
"globalThis.SVGTextPositioningElement.prototype.dx", | |
"globalThis.SVGTextPositioningElement.prototype.dy", | |
"globalThis.SVGTextPositioningElement.prototype.rotate", | |
"globalThis.SVGTextPositioningElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTextPathElement", | |
"globalThis.SVGTextPathElement.prototype.startOffset", | |
"globalThis.SVGTextPathElement.prototype.method", | |
"globalThis.SVGTextPathElement.prototype.spacing", | |
"globalThis.SVGTextPathElement.prototype.href", | |
"globalThis.SVGTextPathElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTextElement", | |
"globalThis.SVGTextElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTextContentElement", | |
"globalThis.SVGTextContentElement.prototype.textLength", | |
"globalThis.SVGTextContentElement.prototype.lengthAdjust", | |
"globalThis.SVGTextContentElement.prototype.getCharNumAtPosition", | |
"globalThis.SVGTextContentElement.prototype.getComputedTextLength", | |
"globalThis.SVGTextContentElement.prototype.getEndPositionOfChar", | |
"globalThis.SVGTextContentElement.prototype.getExtentOfChar", | |
"globalThis.SVGTextContentElement.prototype.getNumberOfChars", | |
"globalThis.SVGTextContentElement.prototype.getRotationOfChar", | |
"globalThis.SVGTextContentElement.prototype.getStartPositionOfChar", | |
"globalThis.SVGTextContentElement.prototype.getSubStringLength", | |
"globalThis.SVGTextContentElement.prototype.selectSubString", | |
"globalThis.SVGTextContentElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGTSpanElement", | |
"globalThis.SVGTSpanElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGSymbolElement", | |
"globalThis.SVGSymbolElement.prototype.viewBox", | |
"globalThis.SVGSymbolElement.prototype.preserveAspectRatio", | |
"globalThis.SVGSymbolElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGSwitchElement", | |
"globalThis.SVGSwitchElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGStyleElement", | |
"globalThis.SVGStyleElement.prototype.type", | |
"globalThis.SVGStyleElement.prototype.media", | |
"globalThis.SVGStyleElement.prototype.title", | |
"globalThis.SVGStyleElement.prototype.sheet", | |
"globalThis.SVGStyleElement.prototype.disabled", | |
"globalThis.SVGStyleElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGStringList", | |
"globalThis.SVGStringList.prototype.length", | |
"globalThis.SVGStringList.prototype.numberOfItems", | |
"globalThis.SVGStringList.prototype.appendItem", | |
"globalThis.SVGStringList.prototype.clear", | |
"globalThis.SVGStringList.prototype.getItem", | |
"globalThis.SVGStringList.prototype.initialize", | |
"globalThis.SVGStringList.prototype.insertItemBefore", | |
"globalThis.SVGStringList.prototype.removeItem", | |
"globalThis.SVGStringList.prototype.replaceItem", | |
"globalThis.SVGStringList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGStringList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.SVGStopElement", | |
"globalThis.SVGStopElement.prototype.offset", | |
"globalThis.SVGStopElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGSetElement", | |
"globalThis.SVGSetElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGScriptElement", | |
"globalThis.SVGScriptElement.prototype.type", | |
"globalThis.SVGScriptElement.prototype.href", | |
"globalThis.SVGScriptElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGSVGElement", | |
"globalThis.SVGSVGElement.prototype.x", | |
"globalThis.SVGSVGElement.prototype.y", | |
"globalThis.SVGSVGElement.prototype.width", | |
"globalThis.SVGSVGElement.prototype.height", | |
"globalThis.SVGSVGElement.prototype.currentScale", | |
"globalThis.SVGSVGElement.prototype.currentTranslate", | |
"globalThis.SVGSVGElement.prototype.viewBox", | |
"globalThis.SVGSVGElement.prototype.preserveAspectRatio", | |
"globalThis.SVGSVGElement.prototype.zoomAndPan", | |
"globalThis.SVGSVGElement.prototype.animationsPaused", | |
"globalThis.SVGSVGElement.prototype.checkEnclosure", | |
"globalThis.SVGSVGElement.prototype.checkIntersection", | |
"globalThis.SVGSVGElement.prototype.createSVGAngle", | |
"globalThis.SVGSVGElement.prototype.createSVGLength", | |
"globalThis.SVGSVGElement.prototype.createSVGMatrix", | |
"globalThis.SVGSVGElement.prototype.createSVGNumber", | |
"globalThis.SVGSVGElement.prototype.createSVGPoint", | |
"globalThis.SVGSVGElement.prototype.createSVGRect", | |
"globalThis.SVGSVGElement.prototype.createSVGTransform", | |
"globalThis.SVGSVGElement.prototype.createSVGTransformFromMatrix", | |
"globalThis.SVGSVGElement.prototype.deselectAll", | |
"globalThis.SVGSVGElement.prototype.forceRedraw", | |
"globalThis.SVGSVGElement.prototype.getCurrentTime", | |
"globalThis.SVGSVGElement.prototype.getElementById", | |
"globalThis.SVGSVGElement.prototype.getEnclosureList", | |
"globalThis.SVGSVGElement.prototype.getIntersectionList", | |
"globalThis.SVGSVGElement.prototype.pauseAnimations", | |
"globalThis.SVGSVGElement.prototype.setCurrentTime", | |
"globalThis.SVGSVGElement.prototype.suspendRedraw", | |
"globalThis.SVGSVGElement.prototype.unpauseAnimations", | |
"globalThis.SVGSVGElement.prototype.unsuspendRedraw", | |
"globalThis.SVGSVGElement.prototype.unsuspendRedrawAll", | |
"globalThis.SVGSVGElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGRectElement", | |
"globalThis.SVGRectElement.prototype.x", | |
"globalThis.SVGRectElement.prototype.y", | |
"globalThis.SVGRectElement.prototype.width", | |
"globalThis.SVGRectElement.prototype.height", | |
"globalThis.SVGRectElement.prototype.rx", | |
"globalThis.SVGRectElement.prototype.ry", | |
"globalThis.SVGRectElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGRect", | |
"globalThis.SVGRect.prototype.x", | |
"globalThis.SVGRect.prototype.y", | |
"globalThis.SVGRect.prototype.width", | |
"globalThis.SVGRect.prototype.height", | |
"globalThis.SVGRect.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGRadialGradientElement", | |
"globalThis.SVGRadialGradientElement.prototype.cx", | |
"globalThis.SVGRadialGradientElement.prototype.cy", | |
"globalThis.SVGRadialGradientElement.prototype.r", | |
"globalThis.SVGRadialGradientElement.prototype.fx", | |
"globalThis.SVGRadialGradientElement.prototype.fy", | |
"globalThis.SVGRadialGradientElement.prototype.fr", | |
"globalThis.SVGRadialGradientElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPreserveAspectRatio", | |
"globalThis.SVGPreserveAspectRatio.prototype.align", | |
"globalThis.SVGPreserveAspectRatio.prototype.meetOrSlice", | |
"globalThis.SVGPreserveAspectRatio.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPolylineElement", | |
"globalThis.SVGPolylineElement.prototype.points", | |
"globalThis.SVGPolylineElement.prototype.animatedPoints", | |
"globalThis.SVGPolylineElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPolygonElement", | |
"globalThis.SVGPolygonElement.prototype.points", | |
"globalThis.SVGPolygonElement.prototype.animatedPoints", | |
"globalThis.SVGPolygonElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPointList", | |
"globalThis.SVGPointList.prototype.length", | |
"globalThis.SVGPointList.prototype.numberOfItems", | |
"globalThis.SVGPointList.prototype.appendItem", | |
"globalThis.SVGPointList.prototype.clear", | |
"globalThis.SVGPointList.prototype.getItem", | |
"globalThis.SVGPointList.prototype.initialize", | |
"globalThis.SVGPointList.prototype.insertItemBefore", | |
"globalThis.SVGPointList.prototype.removeItem", | |
"globalThis.SVGPointList.prototype.replaceItem", | |
"globalThis.SVGPointList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPointList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.SVGPoint", | |
"globalThis.SVGPoint.prototype.x", | |
"globalThis.SVGPoint.prototype.y", | |
"globalThis.SVGPoint.prototype.matrixTransform", | |
"globalThis.SVGPoint.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPatternElement", | |
"globalThis.SVGPatternElement.prototype.patternUnits", | |
"globalThis.SVGPatternElement.prototype.patternContentUnits", | |
"globalThis.SVGPatternElement.prototype.patternTransform", | |
"globalThis.SVGPatternElement.prototype.x", | |
"globalThis.SVGPatternElement.prototype.y", | |
"globalThis.SVGPatternElement.prototype.width", | |
"globalThis.SVGPatternElement.prototype.height", | |
"globalThis.SVGPatternElement.prototype.viewBox", | |
"globalThis.SVGPatternElement.prototype.preserveAspectRatio", | |
"globalThis.SVGPatternElement.prototype.href", | |
"globalThis.SVGPatternElement.prototype.requiredExtensions", | |
"globalThis.SVGPatternElement.prototype.systemLanguage", | |
"globalThis.SVGPatternElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGPathElement", | |
"globalThis.SVGPathElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGNumberList", | |
"globalThis.SVGNumberList.prototype.length", | |
"globalThis.SVGNumberList.prototype.numberOfItems", | |
"globalThis.SVGNumberList.prototype.appendItem", | |
"globalThis.SVGNumberList.prototype.clear", | |
"globalThis.SVGNumberList.prototype.getItem", | |
"globalThis.SVGNumberList.prototype.initialize", | |
"globalThis.SVGNumberList.prototype.insertItemBefore", | |
"globalThis.SVGNumberList.prototype.removeItem", | |
"globalThis.SVGNumberList.prototype.replaceItem", | |
"globalThis.SVGNumberList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGNumberList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.SVGNumber", | |
"globalThis.SVGNumber.prototype.value", | |
"globalThis.SVGNumber.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGMetadataElement", | |
"globalThis.SVGMetadataElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGMatrix", | |
"globalThis.SVGMatrix.prototype.a", | |
"globalThis.SVGMatrix.prototype.b", | |
"globalThis.SVGMatrix.prototype.c", | |
"globalThis.SVGMatrix.prototype.d", | |
"globalThis.SVGMatrix.prototype.e", | |
"globalThis.SVGMatrix.prototype.f", | |
"globalThis.SVGMatrix.prototype.flipX", | |
"globalThis.SVGMatrix.prototype.flipY", | |
"globalThis.SVGMatrix.prototype.inverse", | |
"globalThis.SVGMatrix.prototype.multiply", | |
"globalThis.SVGMatrix.prototype.rotate", | |
"globalThis.SVGMatrix.prototype.rotateFromVector", | |
"globalThis.SVGMatrix.prototype.scale", | |
"globalThis.SVGMatrix.prototype.scaleNonUniform", | |
"globalThis.SVGMatrix.prototype.skewX", | |
"globalThis.SVGMatrix.prototype.skewY", | |
"globalThis.SVGMatrix.prototype.translate", | |
"globalThis.SVGMatrix.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGMaskElement", | |
"globalThis.SVGMaskElement.prototype.maskUnits", | |
"globalThis.SVGMaskElement.prototype.maskContentUnits", | |
"globalThis.SVGMaskElement.prototype.x", | |
"globalThis.SVGMaskElement.prototype.y", | |
"globalThis.SVGMaskElement.prototype.width", | |
"globalThis.SVGMaskElement.prototype.height", | |
"globalThis.SVGMaskElement.prototype.requiredExtensions", | |
"globalThis.SVGMaskElement.prototype.systemLanguage", | |
"globalThis.SVGMaskElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGMarkerElement", | |
"globalThis.SVGMarkerElement.prototype.refX", | |
"globalThis.SVGMarkerElement.prototype.refY", | |
"globalThis.SVGMarkerElement.prototype.markerUnits", | |
"globalThis.SVGMarkerElement.prototype.markerWidth", | |
"globalThis.SVGMarkerElement.prototype.markerHeight", | |
"globalThis.SVGMarkerElement.prototype.orientType", | |
"globalThis.SVGMarkerElement.prototype.orientAngle", | |
"globalThis.SVGMarkerElement.prototype.viewBox", | |
"globalThis.SVGMarkerElement.prototype.preserveAspectRatio", | |
"globalThis.SVGMarkerElement.prototype.setOrientToAngle", | |
"globalThis.SVGMarkerElement.prototype.setOrientToAuto", | |
"globalThis.SVGMarkerElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGMPathElement", | |
"globalThis.SVGMPathElement.prototype.href", | |
"globalThis.SVGMPathElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGLinearGradientElement", | |
"globalThis.SVGLinearGradientElement.prototype.x1", | |
"globalThis.SVGLinearGradientElement.prototype.y1", | |
"globalThis.SVGLinearGradientElement.prototype.x2", | |
"globalThis.SVGLinearGradientElement.prototype.y2", | |
"globalThis.SVGLinearGradientElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGLineElement", | |
"globalThis.SVGLineElement.prototype.x1", | |
"globalThis.SVGLineElement.prototype.y1", | |
"globalThis.SVGLineElement.prototype.x2", | |
"globalThis.SVGLineElement.prototype.y2", | |
"globalThis.SVGLineElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGLengthList", | |
"globalThis.SVGLengthList.prototype.length", | |
"globalThis.SVGLengthList.prototype.numberOfItems", | |
"globalThis.SVGLengthList.prototype.appendItem", | |
"globalThis.SVGLengthList.prototype.clear", | |
"globalThis.SVGLengthList.prototype.getItem", | |
"globalThis.SVGLengthList.prototype.initialize", | |
"globalThis.SVGLengthList.prototype.insertItemBefore", | |
"globalThis.SVGLengthList.prototype.removeItem", | |
"globalThis.SVGLengthList.prototype.replaceItem", | |
"globalThis.SVGLengthList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGLengthList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.SVGLength", | |
"globalThis.SVGLength.prototype.unitType", | |
"globalThis.SVGLength.prototype.value", | |
"globalThis.SVGLength.prototype.valueInSpecifiedUnits", | |
"globalThis.SVGLength.prototype.valueAsString", | |
"globalThis.SVGLength.prototype.convertToSpecifiedUnits", | |
"globalThis.SVGLength.prototype.newValueSpecifiedUnits", | |
"globalThis.SVGLength.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGImageElement", | |
"globalThis.SVGImageElement.prototype.x", | |
"globalThis.SVGImageElement.prototype.y", | |
"globalThis.SVGImageElement.prototype.width", | |
"globalThis.SVGImageElement.prototype.height", | |
"globalThis.SVGImageElement.prototype.preserveAspectRatio", | |
"globalThis.SVGImageElement.prototype.decoding", | |
"globalThis.SVGImageElement.prototype.href", | |
"globalThis.SVGImageElement.prototype.decode", | |
"globalThis.SVGImageElement.prototype.crossOrigin", | |
"globalThis.SVGImageElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGGraphicsElement", | |
"globalThis.SVGGraphicsElement.prototype.transform", | |
"globalThis.SVGGraphicsElement.prototype.nearestViewportElement", | |
"globalThis.SVGGraphicsElement.prototype.farthestViewportElement", | |
"globalThis.SVGGraphicsElement.prototype.requiredExtensions", | |
"globalThis.SVGGraphicsElement.prototype.systemLanguage", | |
"globalThis.SVGGraphicsElement.prototype.getBBox", | |
"globalThis.SVGGraphicsElement.prototype.getCTM", | |
"globalThis.SVGGraphicsElement.prototype.getScreenCTM", | |
"globalThis.SVGGraphicsElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGGradientElement", | |
"globalThis.SVGGradientElement.prototype.gradientUnits", | |
"globalThis.SVGGradientElement.prototype.gradientTransform", | |
"globalThis.SVGGradientElement.prototype.spreadMethod", | |
"globalThis.SVGGradientElement.prototype.href", | |
"globalThis.SVGGradientElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGGeometryElement", | |
"globalThis.SVGGeometryElement.prototype.pathLength", | |
"globalThis.SVGGeometryElement.prototype.getPointAtLength", | |
"globalThis.SVGGeometryElement.prototype.getTotalLength", | |
"globalThis.SVGGeometryElement.prototype.isPointInFill", | |
"globalThis.SVGGeometryElement.prototype.isPointInStroke", | |
"globalThis.SVGGeometryElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGGElement", | |
"globalThis.SVGGElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGForeignObjectElement", | |
"globalThis.SVGForeignObjectElement.prototype.x", | |
"globalThis.SVGForeignObjectElement.prototype.y", | |
"globalThis.SVGForeignObjectElement.prototype.width", | |
"globalThis.SVGForeignObjectElement.prototype.height", | |
"globalThis.SVGForeignObjectElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFilterElement", | |
"globalThis.SVGFilterElement.prototype.filterUnits", | |
"globalThis.SVGFilterElement.prototype.primitiveUnits", | |
"globalThis.SVGFilterElement.prototype.x", | |
"globalThis.SVGFilterElement.prototype.y", | |
"globalThis.SVGFilterElement.prototype.width", | |
"globalThis.SVGFilterElement.prototype.height", | |
"globalThis.SVGFilterElement.prototype.href", | |
"globalThis.SVGFilterElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFETurbulenceElement", | |
"globalThis.SVGFETurbulenceElement.prototype.baseFrequencyX", | |
"globalThis.SVGFETurbulenceElement.prototype.baseFrequencyY", | |
"globalThis.SVGFETurbulenceElement.prototype.numOctaves", | |
"globalThis.SVGFETurbulenceElement.prototype.seed", | |
"globalThis.SVGFETurbulenceElement.prototype.stitchTiles", | |
"globalThis.SVGFETurbulenceElement.prototype.type", | |
"globalThis.SVGFETurbulenceElement.prototype.x", | |
"globalThis.SVGFETurbulenceElement.prototype.y", | |
"globalThis.SVGFETurbulenceElement.prototype.width", | |
"globalThis.SVGFETurbulenceElement.prototype.height", | |
"globalThis.SVGFETurbulenceElement.prototype.result", | |
"globalThis.SVGFETurbulenceElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFETileElement", | |
"globalThis.SVGFETileElement.prototype.in1", | |
"globalThis.SVGFETileElement.prototype.x", | |
"globalThis.SVGFETileElement.prototype.y", | |
"globalThis.SVGFETileElement.prototype.width", | |
"globalThis.SVGFETileElement.prototype.height", | |
"globalThis.SVGFETileElement.prototype.result", | |
"globalThis.SVGFETileElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFESpotLightElement", | |
"globalThis.SVGFESpotLightElement.prototype.x", | |
"globalThis.SVGFESpotLightElement.prototype.y", | |
"globalThis.SVGFESpotLightElement.prototype.z", | |
"globalThis.SVGFESpotLightElement.prototype.pointsAtX", | |
"globalThis.SVGFESpotLightElement.prototype.pointsAtY", | |
"globalThis.SVGFESpotLightElement.prototype.pointsAtZ", | |
"globalThis.SVGFESpotLightElement.prototype.specularExponent", | |
"globalThis.SVGFESpotLightElement.prototype.limitingConeAngle", | |
"globalThis.SVGFESpotLightElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFESpecularLightingElement", | |
"globalThis.SVGFESpecularLightingElement.prototype.in1", | |
"globalThis.SVGFESpecularLightingElement.prototype.surfaceScale", | |
"globalThis.SVGFESpecularLightingElement.prototype.specularConstant", | |
"globalThis.SVGFESpecularLightingElement.prototype.specularExponent", | |
"globalThis.SVGFESpecularLightingElement.prototype.kernelUnitLengthX", | |
"globalThis.SVGFESpecularLightingElement.prototype.kernelUnitLengthY", | |
"globalThis.SVGFESpecularLightingElement.prototype.x", | |
"globalThis.SVGFESpecularLightingElement.prototype.y", | |
"globalThis.SVGFESpecularLightingElement.prototype.width", | |
"globalThis.SVGFESpecularLightingElement.prototype.height", | |
"globalThis.SVGFESpecularLightingElement.prototype.result", | |
"globalThis.SVGFESpecularLightingElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEPointLightElement", | |
"globalThis.SVGFEPointLightElement.prototype.x", | |
"globalThis.SVGFEPointLightElement.prototype.y", | |
"globalThis.SVGFEPointLightElement.prototype.z", | |
"globalThis.SVGFEPointLightElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEOffsetElement", | |
"globalThis.SVGFEOffsetElement.prototype.in1", | |
"globalThis.SVGFEOffsetElement.prototype.dx", | |
"globalThis.SVGFEOffsetElement.prototype.dy", | |
"globalThis.SVGFEOffsetElement.prototype.x", | |
"globalThis.SVGFEOffsetElement.prototype.y", | |
"globalThis.SVGFEOffsetElement.prototype.width", | |
"globalThis.SVGFEOffsetElement.prototype.height", | |
"globalThis.SVGFEOffsetElement.prototype.result", | |
"globalThis.SVGFEOffsetElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEMorphologyElement", | |
"globalThis.SVGFEMorphologyElement.prototype.in1", | |
"globalThis.SVGFEMorphologyElement.prototype.operator", | |
"globalThis.SVGFEMorphologyElement.prototype.radiusX", | |
"globalThis.SVGFEMorphologyElement.prototype.radiusY", | |
"globalThis.SVGFEMorphologyElement.prototype.x", | |
"globalThis.SVGFEMorphologyElement.prototype.y", | |
"globalThis.SVGFEMorphologyElement.prototype.width", | |
"globalThis.SVGFEMorphologyElement.prototype.height", | |
"globalThis.SVGFEMorphologyElement.prototype.result", | |
"globalThis.SVGFEMorphologyElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEMergeNodeElement", | |
"globalThis.SVGFEMergeNodeElement.prototype.in1", | |
"globalThis.SVGFEMergeNodeElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEMergeElement", | |
"globalThis.SVGFEMergeElement.prototype.x", | |
"globalThis.SVGFEMergeElement.prototype.y", | |
"globalThis.SVGFEMergeElement.prototype.width", | |
"globalThis.SVGFEMergeElement.prototype.height", | |
"globalThis.SVGFEMergeElement.prototype.result", | |
"globalThis.SVGFEMergeElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEImageElement", | |
"globalThis.SVGFEImageElement.prototype.preserveAspectRatio", | |
"globalThis.SVGFEImageElement.prototype.x", | |
"globalThis.SVGFEImageElement.prototype.y", | |
"globalThis.SVGFEImageElement.prototype.width", | |
"globalThis.SVGFEImageElement.prototype.height", | |
"globalThis.SVGFEImageElement.prototype.result", | |
"globalThis.SVGFEImageElement.prototype.href", | |
"globalThis.SVGFEImageElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEGaussianBlurElement", | |
"globalThis.SVGFEGaussianBlurElement.prototype.in1", | |
"globalThis.SVGFEGaussianBlurElement.prototype.stdDeviationX", | |
"globalThis.SVGFEGaussianBlurElement.prototype.stdDeviationY", | |
"globalThis.SVGFEGaussianBlurElement.prototype.x", | |
"globalThis.SVGFEGaussianBlurElement.prototype.y", | |
"globalThis.SVGFEGaussianBlurElement.prototype.width", | |
"globalThis.SVGFEGaussianBlurElement.prototype.height", | |
"globalThis.SVGFEGaussianBlurElement.prototype.result", | |
"globalThis.SVGFEGaussianBlurElement.prototype.setStdDeviation", | |
"globalThis.SVGFEGaussianBlurElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEFuncRElement", | |
"globalThis.SVGFEFuncRElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEFuncGElement", | |
"globalThis.SVGFEFuncGElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEFuncBElement", | |
"globalThis.SVGFEFuncBElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEFuncAElement", | |
"globalThis.SVGFEFuncAElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEFloodElement", | |
"globalThis.SVGFEFloodElement.prototype.x", | |
"globalThis.SVGFEFloodElement.prototype.y", | |
"globalThis.SVGFEFloodElement.prototype.width", | |
"globalThis.SVGFEFloodElement.prototype.height", | |
"globalThis.SVGFEFloodElement.prototype.result", | |
"globalThis.SVGFEFloodElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEDropShadowElement", | |
"globalThis.SVGFEDropShadowElement.prototype.in1", | |
"globalThis.SVGFEDropShadowElement.prototype.dx", | |
"globalThis.SVGFEDropShadowElement.prototype.dy", | |
"globalThis.SVGFEDropShadowElement.prototype.stdDeviationX", | |
"globalThis.SVGFEDropShadowElement.prototype.stdDeviationY", | |
"globalThis.SVGFEDropShadowElement.prototype.x", | |
"globalThis.SVGFEDropShadowElement.prototype.y", | |
"globalThis.SVGFEDropShadowElement.prototype.width", | |
"globalThis.SVGFEDropShadowElement.prototype.height", | |
"globalThis.SVGFEDropShadowElement.prototype.result", | |
"globalThis.SVGFEDropShadowElement.prototype.setStdDeviation", | |
"globalThis.SVGFEDropShadowElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEDistantLightElement", | |
"globalThis.SVGFEDistantLightElement.prototype.azimuth", | |
"globalThis.SVGFEDistantLightElement.prototype.elevation", | |
"globalThis.SVGFEDistantLightElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEDisplacementMapElement", | |
"globalThis.SVGFEDisplacementMapElement.prototype.in1", | |
"globalThis.SVGFEDisplacementMapElement.prototype.in2", | |
"globalThis.SVGFEDisplacementMapElement.prototype.scale", | |
"globalThis.SVGFEDisplacementMapElement.prototype.xChannelSelector", | |
"globalThis.SVGFEDisplacementMapElement.prototype.yChannelSelector", | |
"globalThis.SVGFEDisplacementMapElement.prototype.x", | |
"globalThis.SVGFEDisplacementMapElement.prototype.y", | |
"globalThis.SVGFEDisplacementMapElement.prototype.width", | |
"globalThis.SVGFEDisplacementMapElement.prototype.height", | |
"globalThis.SVGFEDisplacementMapElement.prototype.result", | |
"globalThis.SVGFEDisplacementMapElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEDiffuseLightingElement", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.in1", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.surfaceScale", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.diffuseConstant", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.kernelUnitLengthX", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.kernelUnitLengthY", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.x", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.y", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.width", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.height", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.result", | |
"globalThis.SVGFEDiffuseLightingElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEConvolveMatrixElement", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.in1", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.orderX", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.orderY", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.kernelMatrix", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.divisor", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.bias", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.targetX", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.targetY", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.edgeMode", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.kernelUnitLengthX", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.kernelUnitLengthY", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.preserveAlpha", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.x", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.y", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.width", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.height", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.result", | |
"globalThis.SVGFEConvolveMatrixElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFECompositeElement", | |
"globalThis.SVGFECompositeElement.prototype.in2", | |
"globalThis.SVGFECompositeElement.prototype.in1", | |
"globalThis.SVGFECompositeElement.prototype.operator", | |
"globalThis.SVGFECompositeElement.prototype.k1", | |
"globalThis.SVGFECompositeElement.prototype.k2", | |
"globalThis.SVGFECompositeElement.prototype.k3", | |
"globalThis.SVGFECompositeElement.prototype.k4", | |
"globalThis.SVGFECompositeElement.prototype.x", | |
"globalThis.SVGFECompositeElement.prototype.y", | |
"globalThis.SVGFECompositeElement.prototype.width", | |
"globalThis.SVGFECompositeElement.prototype.height", | |
"globalThis.SVGFECompositeElement.prototype.result", | |
"globalThis.SVGFECompositeElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEComponentTransferElement", | |
"globalThis.SVGFEComponentTransferElement.prototype.in1", | |
"globalThis.SVGFEComponentTransferElement.prototype.x", | |
"globalThis.SVGFEComponentTransferElement.prototype.y", | |
"globalThis.SVGFEComponentTransferElement.prototype.width", | |
"globalThis.SVGFEComponentTransferElement.prototype.height", | |
"globalThis.SVGFEComponentTransferElement.prototype.result", | |
"globalThis.SVGFEComponentTransferElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEColorMatrixElement", | |
"globalThis.SVGFEColorMatrixElement.prototype.in1", | |
"globalThis.SVGFEColorMatrixElement.prototype.type", | |
"globalThis.SVGFEColorMatrixElement.prototype.values", | |
"globalThis.SVGFEColorMatrixElement.prototype.x", | |
"globalThis.SVGFEColorMatrixElement.prototype.y", | |
"globalThis.SVGFEColorMatrixElement.prototype.width", | |
"globalThis.SVGFEColorMatrixElement.prototype.height", | |
"globalThis.SVGFEColorMatrixElement.prototype.result", | |
"globalThis.SVGFEColorMatrixElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGFEBlendElement", | |
"globalThis.SVGFEBlendElement.prototype.in1", | |
"globalThis.SVGFEBlendElement.prototype.in2", | |
"globalThis.SVGFEBlendElement.prototype.mode", | |
"globalThis.SVGFEBlendElement.prototype.x", | |
"globalThis.SVGFEBlendElement.prototype.y", | |
"globalThis.SVGFEBlendElement.prototype.width", | |
"globalThis.SVGFEBlendElement.prototype.height", | |
"globalThis.SVGFEBlendElement.prototype.result", | |
"globalThis.SVGFEBlendElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGEllipseElement", | |
"globalThis.SVGEllipseElement.prototype.cx", | |
"globalThis.SVGEllipseElement.prototype.cy", | |
"globalThis.SVGEllipseElement.prototype.rx", | |
"globalThis.SVGEllipseElement.prototype.ry", | |
"globalThis.SVGEllipseElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGElement", | |
"globalThis.SVGElement.prototype.className", | |
"globalThis.SVGElement.prototype.ownerSVGElement", | |
"globalThis.SVGElement.prototype.viewportElement", | |
"globalThis.SVGElement.prototype.onbeforexrselect", | |
"globalThis.SVGElement.prototype.onabort", | |
"globalThis.SVGElement.prototype.onbeforeinput", | |
"globalThis.SVGElement.prototype.onbeforetoggle", | |
"globalThis.SVGElement.prototype.onblur", | |
"globalThis.SVGElement.prototype.oncancel", | |
"globalThis.SVGElement.prototype.oncanplay", | |
"globalThis.SVGElement.prototype.oncanplaythrough", | |
"globalThis.SVGElement.prototype.onchange", | |
"globalThis.SVGElement.prototype.onclick", | |
"globalThis.SVGElement.prototype.onclose", | |
"globalThis.SVGElement.prototype.oncontextlost", | |
"globalThis.SVGElement.prototype.oncontextmenu", | |
"globalThis.SVGElement.prototype.oncontextrestored", | |
"globalThis.SVGElement.prototype.oncuechange", | |
"globalThis.SVGElement.prototype.ondblclick", | |
"globalThis.SVGElement.prototype.ondrag", | |
"globalThis.SVGElement.prototype.ondragend", | |
"globalThis.SVGElement.prototype.ondragenter", | |
"globalThis.SVGElement.prototype.ondragleave", | |
"globalThis.SVGElement.prototype.ondragover", | |
"globalThis.SVGElement.prototype.ondragstart", | |
"globalThis.SVGElement.prototype.ondrop", | |
"globalThis.SVGElement.prototype.ondurationchange", | |
"globalThis.SVGElement.prototype.onemptied", | |
"globalThis.SVGElement.prototype.onended", | |
"globalThis.SVGElement.prototype.onerror", | |
"globalThis.SVGElement.prototype.onfocus", | |
"globalThis.SVGElement.prototype.onformdata", | |
"globalThis.SVGElement.prototype.oninput", | |
"globalThis.SVGElement.prototype.oninvalid", | |
"globalThis.SVGElement.prototype.onkeydown", | |
"globalThis.SVGElement.prototype.onkeypress", | |
"globalThis.SVGElement.prototype.onkeyup", | |
"globalThis.SVGElement.prototype.onload", | |
"globalThis.SVGElement.prototype.onloadeddata", | |
"globalThis.SVGElement.prototype.onloadedmetadata", | |
"globalThis.SVGElement.prototype.onloadstart", | |
"globalThis.SVGElement.prototype.onmousedown", | |
"globalThis.SVGElement.prototype.onmouseenter", | |
"globalThis.SVGElement.prototype.onmouseleave", | |
"globalThis.SVGElement.prototype.onmousemove", | |
"globalThis.SVGElement.prototype.onmouseout", | |
"globalThis.SVGElement.prototype.onmouseover", | |
"globalThis.SVGElement.prototype.onmouseup", | |
"globalThis.SVGElement.prototype.onmousewheel", | |
"globalThis.SVGElement.prototype.onpause", | |
"globalThis.SVGElement.prototype.onplay", | |
"globalThis.SVGElement.prototype.onplaying", | |
"globalThis.SVGElement.prototype.onprogress", | |
"globalThis.SVGElement.prototype.onratechange", | |
"globalThis.SVGElement.prototype.onreset", | |
"globalThis.SVGElement.prototype.onresize", | |
"globalThis.SVGElement.prototype.onscroll", | |
"globalThis.SVGElement.prototype.onsecuritypolicyviolation", | |
"globalThis.SVGElement.prototype.onseeked", | |
"globalThis.SVGElement.prototype.onseeking", | |
"globalThis.SVGElement.prototype.onselect", | |
"globalThis.SVGElement.prototype.onslotchange", | |
"globalThis.SVGElement.prototype.onstalled", | |
"globalThis.SVGElement.prototype.onsubmit", | |
"globalThis.SVGElement.prototype.onsuspend", | |
"globalThis.SVGElement.prototype.ontimeupdate", | |
"globalThis.SVGElement.prototype.ontoggle", | |
"globalThis.SVGElement.prototype.onvolumechange", | |
"globalThis.SVGElement.prototype.onwaiting", | |
"globalThis.SVGElement.prototype.onwebkitanimationend", | |
"globalThis.SVGElement.prototype.onwebkitanimationiteration", | |
"globalThis.SVGElement.prototype.onwebkitanimationstart", | |
"globalThis.SVGElement.prototype.onwebkittransitionend", | |
"globalThis.SVGElement.prototype.onwheel", | |
"globalThis.SVGElement.prototype.onauxclick", | |
"globalThis.SVGElement.prototype.ongotpointercapture", | |
"globalThis.SVGElement.prototype.onlostpointercapture", | |
"globalThis.SVGElement.prototype.onpointerdown", | |
"globalThis.SVGElement.prototype.onpointermove", | |
"globalThis.SVGElement.prototype.onpointerrawupdate", | |
"globalThis.SVGElement.prototype.onpointerup", | |
"globalThis.SVGElement.prototype.onpointercancel", | |
"globalThis.SVGElement.prototype.onpointerover", | |
"globalThis.SVGElement.prototype.onpointerout", | |
"globalThis.SVGElement.prototype.onpointerenter", | |
"globalThis.SVGElement.prototype.onpointerleave", | |
"globalThis.SVGElement.prototype.onselectstart", | |
"globalThis.SVGElement.prototype.onselectionchange", | |
"globalThis.SVGElement.prototype.onanimationend", | |
"globalThis.SVGElement.prototype.onanimationiteration", | |
"globalThis.SVGElement.prototype.onanimationstart", | |
"globalThis.SVGElement.prototype.ontransitionrun", | |
"globalThis.SVGElement.prototype.ontransitionstart", | |
"globalThis.SVGElement.prototype.ontransitionend", | |
"globalThis.SVGElement.prototype.ontransitioncancel", | |
"globalThis.SVGElement.prototype.oncopy", | |
"globalThis.SVGElement.prototype.oncut", | |
"globalThis.SVGElement.prototype.onpaste", | |
"globalThis.SVGElement.prototype.dataset", | |
"globalThis.SVGElement.prototype.nonce", | |
"globalThis.SVGElement.prototype.autofocus", | |
"globalThis.SVGElement.prototype.tabIndex", | |
"globalThis.SVGElement.prototype.style", | |
"globalThis.SVGElement.prototype.attributeStyleMap", | |
"globalThis.SVGElement.prototype.blur", | |
"globalThis.SVGElement.prototype.focus", | |
"globalThis.SVGElement.prototype.oncontentvisibilityautostatechange", | |
"globalThis.SVGElement.prototype.onoverscroll", | |
"globalThis.SVGElement.prototype.onscrollend", | |
"globalThis.SVGElement.prototype.onbeforematch", | |
"globalThis.SVGElement.prototype.focusgroup", | |
"globalThis.SVGElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGDescElement", | |
"globalThis.SVGDescElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGDefsElement", | |
"globalThis.SVGDefsElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGComponentTransferFunctionElement", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.type", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.tableValues", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.slope", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.intercept", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.amplitude", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.exponent", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.offset", | |
"globalThis.SVGComponentTransferFunctionElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGClipPathElement", | |
"globalThis.SVGClipPathElement.prototype.clipPathUnits", | |
"globalThis.SVGClipPathElement.prototype.transform", | |
"globalThis.SVGClipPathElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGCircleElement", | |
"globalThis.SVGCircleElement.prototype.cx", | |
"globalThis.SVGCircleElement.prototype.cy", | |
"globalThis.SVGCircleElement.prototype.r", | |
"globalThis.SVGCircleElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimationElement", | |
"globalThis.SVGAnimationElement.prototype.targetElement", | |
"globalThis.SVGAnimationElement.prototype.onbegin", | |
"globalThis.SVGAnimationElement.prototype.onend", | |
"globalThis.SVGAnimationElement.prototype.onrepeat", | |
"globalThis.SVGAnimationElement.prototype.requiredExtensions", | |
"globalThis.SVGAnimationElement.prototype.systemLanguage", | |
"globalThis.SVGAnimationElement.prototype.beginElement", | |
"globalThis.SVGAnimationElement.prototype.beginElementAt", | |
"globalThis.SVGAnimationElement.prototype.endElement", | |
"globalThis.SVGAnimationElement.prototype.endElementAt", | |
"globalThis.SVGAnimationElement.prototype.getCurrentTime", | |
"globalThis.SVGAnimationElement.prototype.getSimpleDuration", | |
"globalThis.SVGAnimationElement.prototype.getStartTime", | |
"globalThis.SVGAnimationElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedTransformList", | |
"globalThis.SVGAnimatedTransformList.prototype.baseVal", | |
"globalThis.SVGAnimatedTransformList.prototype.animVal", | |
"globalThis.SVGAnimatedTransformList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedString", | |
"globalThis.SVGAnimatedString.prototype.baseVal", | |
"globalThis.SVGAnimatedString.prototype.animVal", | |
"globalThis.SVGAnimatedString.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedRect", | |
"globalThis.SVGAnimatedRect.prototype.baseVal", | |
"globalThis.SVGAnimatedRect.prototype.animVal", | |
"globalThis.SVGAnimatedRect.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedPreserveAspectRatio", | |
"globalThis.SVGAnimatedPreserveAspectRatio.prototype.baseVal", | |
"globalThis.SVGAnimatedPreserveAspectRatio.prototype.animVal", | |
"globalThis.SVGAnimatedPreserveAspectRatio.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedNumberList", | |
"globalThis.SVGAnimatedNumberList.prototype.baseVal", | |
"globalThis.SVGAnimatedNumberList.prototype.animVal", | |
"globalThis.SVGAnimatedNumberList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedNumber", | |
"globalThis.SVGAnimatedNumber.prototype.baseVal", | |
"globalThis.SVGAnimatedNumber.prototype.animVal", | |
"globalThis.SVGAnimatedNumber.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedLengthList", | |
"globalThis.SVGAnimatedLengthList.prototype.baseVal", | |
"globalThis.SVGAnimatedLengthList.prototype.animVal", | |
"globalThis.SVGAnimatedLengthList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedLength", | |
"globalThis.SVGAnimatedLength.prototype.baseVal", | |
"globalThis.SVGAnimatedLength.prototype.animVal", | |
"globalThis.SVGAnimatedLength.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedInteger", | |
"globalThis.SVGAnimatedInteger.prototype.baseVal", | |
"globalThis.SVGAnimatedInteger.prototype.animVal", | |
"globalThis.SVGAnimatedInteger.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedEnumeration", | |
"globalThis.SVGAnimatedEnumeration.prototype.baseVal", | |
"globalThis.SVGAnimatedEnumeration.prototype.animVal", | |
"globalThis.SVGAnimatedEnumeration.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedBoolean", | |
"globalThis.SVGAnimatedBoolean.prototype.baseVal", | |
"globalThis.SVGAnimatedBoolean.prototype.animVal", | |
"globalThis.SVGAnimatedBoolean.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimatedAngle", | |
"globalThis.SVGAnimatedAngle.prototype.baseVal", | |
"globalThis.SVGAnimatedAngle.prototype.animVal", | |
"globalThis.SVGAnimatedAngle.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimateTransformElement", | |
"globalThis.SVGAnimateTransformElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimateMotionElement", | |
"globalThis.SVGAnimateMotionElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAnimateElement", | |
"globalThis.SVGAnimateElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAngle", | |
"globalThis.SVGAngle.prototype.unitType", | |
"globalThis.SVGAngle.prototype.value", | |
"globalThis.SVGAngle.prototype.valueInSpecifiedUnits", | |
"globalThis.SVGAngle.prototype.valueAsString", | |
"globalThis.SVGAngle.prototype.convertToSpecifiedUnits", | |
"globalThis.SVGAngle.prototype.newValueSpecifiedUnits", | |
"globalThis.SVGAngle.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SVGAElement", | |
"globalThis.SVGAElement.prototype.target", | |
"globalThis.SVGAElement.prototype.href", | |
"globalThis.SVGAElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Response", | |
"globalThis.Response.prototype.type", | |
"globalThis.Response.prototype.url", | |
"globalThis.Response.prototype.redirected", | |
"globalThis.Response.prototype.status", | |
"globalThis.Response.prototype.ok", | |
"globalThis.Response.prototype.statusText", | |
"globalThis.Response.prototype.headers", | |
"globalThis.Response.prototype.body", | |
"globalThis.Response.prototype.bodyUsed", | |
"globalThis.Response.prototype.arrayBuffer", | |
"globalThis.Response.prototype.blob", | |
"globalThis.Response.prototype.clone", | |
"globalThis.Response.prototype.formData", | |
"globalThis.Response.prototype.json", | |
"globalThis.Response.prototype.text", | |
"globalThis.Response.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Response.error", | |
"globalThis.Response.json", | |
"globalThis.Response.redirect", | |
"globalThis.ResizeObserverSize", | |
"globalThis.ResizeObserverSize.prototype.inlineSize", | |
"globalThis.ResizeObserverSize.prototype.blockSize", | |
"globalThis.ResizeObserverSize.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ResizeObserverEntry", | |
"globalThis.ResizeObserverEntry.prototype.target", | |
"globalThis.ResizeObserverEntry.prototype.contentRect", | |
"globalThis.ResizeObserverEntry.prototype.contentBoxSize", | |
"globalThis.ResizeObserverEntry.prototype.borderBoxSize", | |
"globalThis.ResizeObserverEntry.prototype.devicePixelContentBoxSize", | |
"globalThis.ResizeObserverEntry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ResizeObserver", | |
"globalThis.ResizeObserver.prototype.disconnect", | |
"globalThis.ResizeObserver.prototype.observe", | |
"globalThis.ResizeObserver.prototype.unobserve", | |
"globalThis.ResizeObserver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Request", | |
"globalThis.Request.prototype.method", | |
"globalThis.Request.prototype.url", | |
"globalThis.Request.prototype.headers", | |
"globalThis.Request.prototype.destination", | |
"globalThis.Request.prototype.referrer", | |
"globalThis.Request.prototype.referrerPolicy", | |
"globalThis.Request.prototype.mode", | |
"globalThis.Request.prototype.credentials", | |
"globalThis.Request.prototype.cache", | |
"globalThis.Request.prototype.redirect", | |
"globalThis.Request.prototype.integrity", | |
"globalThis.Request.prototype.keepalive", | |
"globalThis.Request.prototype.signal", | |
"globalThis.Request.prototype.isHistoryNavigation", | |
"globalThis.Request.prototype.bodyUsed", | |
"globalThis.Request.prototype.arrayBuffer", | |
"globalThis.Request.prototype.blob", | |
"globalThis.Request.prototype.clone", | |
"globalThis.Request.prototype.formData", | |
"globalThis.Request.prototype.json", | |
"globalThis.Request.prototype.text", | |
"globalThis.Request.prototype.body", | |
"globalThis.Request.prototype.targetAddressSpace", | |
"globalThis.Request.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReportingObserver", | |
"globalThis.ReportingObserver.prototype.disconnect", | |
"globalThis.ReportingObserver.prototype.observe", | |
"globalThis.ReportingObserver.prototype.takeRecords", | |
"globalThis.ReportingObserver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReadableStreamDefaultReader", | |
"globalThis.ReadableStreamDefaultReader.prototype.read", | |
"globalThis.ReadableStreamDefaultReader.prototype.releaseLock", | |
"globalThis.ReadableStreamDefaultReader.prototype.closed", | |
"globalThis.ReadableStreamDefaultReader.prototype.cancel", | |
"globalThis.ReadableStreamDefaultReader.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReadableStreamDefaultController", | |
"globalThis.ReadableStreamDefaultController.prototype.desiredSize", | |
"globalThis.ReadableStreamDefaultController.prototype.close", | |
"globalThis.ReadableStreamDefaultController.prototype.enqueue", | |
"globalThis.ReadableStreamDefaultController.prototype.error", | |
"globalThis.ReadableStreamDefaultController.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReadableStreamBYOBRequest", | |
"globalThis.ReadableStreamBYOBRequest.prototype.view", | |
"globalThis.ReadableStreamBYOBRequest.prototype.respond", | |
"globalThis.ReadableStreamBYOBRequest.prototype.respondWithNewView", | |
"globalThis.ReadableStreamBYOBRequest.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReadableStreamBYOBReader", | |
"globalThis.ReadableStreamBYOBReader.prototype.read", | |
"globalThis.ReadableStreamBYOBReader.prototype.releaseLock", | |
"globalThis.ReadableStreamBYOBReader.prototype.closed", | |
"globalThis.ReadableStreamBYOBReader.prototype.cancel", | |
"globalThis.ReadableStreamBYOBReader.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReadableStream", | |
"globalThis.ReadableStream.prototype.locked", | |
"globalThis.ReadableStream.prototype.cancel", | |
"globalThis.ReadableStream.prototype.getReader", | |
"globalThis.ReadableStream.prototype.pipeThrough", | |
"globalThis.ReadableStream.prototype.pipeTo", | |
"globalThis.ReadableStream.prototype.tee", | |
"globalThis.ReadableStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ReadableByteStreamController", | |
"globalThis.ReadableByteStreamController.prototype.byobRequest", | |
"globalThis.ReadableByteStreamController.prototype.desiredSize", | |
"globalThis.ReadableByteStreamController.prototype.close", | |
"globalThis.ReadableByteStreamController.prototype.enqueue", | |
"globalThis.ReadableByteStreamController.prototype.error", | |
"globalThis.ReadableByteStreamController.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Range", | |
"globalThis.Range.prototype.commonAncestorContainer", | |
"globalThis.Range.prototype.cloneContents", | |
"globalThis.Range.prototype.cloneRange", | |
"globalThis.Range.prototype.collapse", | |
"globalThis.Range.prototype.compareBoundaryPoints", | |
"globalThis.Range.prototype.comparePoint", | |
"globalThis.Range.prototype.createContextualFragment", | |
"globalThis.Range.prototype.deleteContents", | |
"globalThis.Range.prototype.detach", | |
"globalThis.Range.prototype.expand", | |
"globalThis.Range.prototype.extractContents", | |
"globalThis.Range.prototype.getBoundingClientRect", | |
"globalThis.Range.prototype.getClientRects", | |
"globalThis.Range.prototype.insertNode", | |
"globalThis.Range.prototype.intersectsNode", | |
"globalThis.Range.prototype.isPointInRange", | |
"globalThis.Range.prototype.selectNode", | |
"globalThis.Range.prototype.selectNodeContents", | |
"globalThis.Range.prototype.setEnd", | |
"globalThis.Range.prototype.setEndAfter", | |
"globalThis.Range.prototype.setEndBefore", | |
"globalThis.Range.prototype.setStart", | |
"globalThis.Range.prototype.setStartAfter", | |
"globalThis.Range.prototype.setStartBefore", | |
"globalThis.Range.prototype.surroundContents", | |
"globalThis.Range.prototype.toString", | |
"globalThis.Range.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RadioNodeList", | |
"globalThis.RadioNodeList.prototype.value", | |
"globalThis.RadioNodeList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RadioNodeList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.RTCTrackEvent", | |
"globalThis.RTCTrackEvent.prototype.receiver", | |
"globalThis.RTCTrackEvent.prototype.track", | |
"globalThis.RTCTrackEvent.prototype.streams", | |
"globalThis.RTCTrackEvent.prototype.transceiver", | |
"globalThis.RTCTrackEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCStatsReport", | |
"globalThis.RTCStatsReport.prototype.size", | |
"globalThis.RTCStatsReport.prototype.entries", | |
"globalThis.RTCStatsReport.prototype.forEach", | |
"globalThis.RTCStatsReport.prototype.get", | |
"globalThis.RTCStatsReport.prototype.has", | |
"globalThis.RTCStatsReport.prototype.keys", | |
"globalThis.RTCStatsReport.prototype.values", | |
"globalThis.RTCStatsReport.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCStatsReport.prototype.Symbol(Symbol.iterator)", | |
"globalThis.RTCSessionDescription", | |
"globalThis.RTCSessionDescription.prototype.type", | |
"globalThis.RTCSessionDescription.prototype.sdp", | |
"globalThis.RTCSessionDescription.prototype.toJSON", | |
"globalThis.RTCSessionDescription.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCSctpTransport", | |
"globalThis.RTCSctpTransport.prototype.transport", | |
"globalThis.RTCSctpTransport.prototype.state", | |
"globalThis.RTCSctpTransport.prototype.maxMessageSize", | |
"globalThis.RTCSctpTransport.prototype.maxChannels", | |
"globalThis.RTCSctpTransport.prototype.onstatechange", | |
"globalThis.RTCSctpTransport.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCRtpTransceiver", | |
"globalThis.RTCRtpTransceiver.prototype.mid", | |
"globalThis.RTCRtpTransceiver.prototype.sender", | |
"globalThis.RTCRtpTransceiver.prototype.receiver", | |
"globalThis.RTCRtpTransceiver.prototype.stopped", | |
"globalThis.RTCRtpTransceiver.prototype.direction", | |
"globalThis.RTCRtpTransceiver.prototype.currentDirection", | |
"globalThis.RTCRtpTransceiver.prototype.setCodecPreferences", | |
"globalThis.RTCRtpTransceiver.prototype.stop", | |
"globalThis.RTCRtpTransceiver.prototype.getHeaderExtensionsToNegotiate", | |
"globalThis.RTCRtpTransceiver.prototype.getNegotiatedHeaderExtensions", | |
"globalThis.RTCRtpTransceiver.prototype.setHeaderExtensionsToNegotiate", | |
"globalThis.RTCRtpTransceiver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCRtpSender", | |
"globalThis.RTCRtpSender.prototype.track", | |
"globalThis.RTCRtpSender.prototype.transport", | |
"globalThis.RTCRtpSender.prototype.rtcpTransport", | |
"globalThis.RTCRtpSender.prototype.dtmf", | |
"globalThis.RTCRtpSender.prototype.createEncodedStreams", | |
"globalThis.RTCRtpSender.prototype.getParameters", | |
"globalThis.RTCRtpSender.prototype.getStats", | |
"globalThis.RTCRtpSender.prototype.replaceTrack", | |
"globalThis.RTCRtpSender.prototype.setParameters", | |
"globalThis.RTCRtpSender.prototype.setStreams", | |
"globalThis.RTCRtpSender.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCRtpSender.getCapabilities", | |
"globalThis.RTCRtpReceiver", | |
"globalThis.RTCRtpReceiver.prototype.track", | |
"globalThis.RTCRtpReceiver.prototype.transport", | |
"globalThis.RTCRtpReceiver.prototype.rtcpTransport", | |
"globalThis.RTCRtpReceiver.prototype.playoutDelayHint", | |
"globalThis.RTCRtpReceiver.prototype.createEncodedStreams", | |
"globalThis.RTCRtpReceiver.prototype.getContributingSources", | |
"globalThis.RTCRtpReceiver.prototype.getParameters", | |
"globalThis.RTCRtpReceiver.prototype.getStats", | |
"globalThis.RTCRtpReceiver.prototype.getSynchronizationSources", | |
"globalThis.RTCRtpReceiver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCRtpReceiver.getCapabilities", | |
"globalThis.RTCPeerConnectionIceEvent", | |
"globalThis.RTCPeerConnectionIceEvent.prototype.candidate", | |
"globalThis.RTCPeerConnectionIceEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCPeerConnectionIceErrorEvent", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.address", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.port", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.hostCandidate", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.url", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.errorCode", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.errorText", | |
"globalThis.RTCPeerConnectionIceErrorEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCPeerConnection", | |
"globalThis.RTCPeerConnection.prototype.localDescription", | |
"globalThis.RTCPeerConnection.prototype.currentLocalDescription", | |
"globalThis.RTCPeerConnection.prototype.pendingLocalDescription", | |
"globalThis.RTCPeerConnection.prototype.remoteDescription", | |
"globalThis.RTCPeerConnection.prototype.currentRemoteDescription", | |
"globalThis.RTCPeerConnection.prototype.pendingRemoteDescription", | |
"globalThis.RTCPeerConnection.prototype.signalingState", | |
"globalThis.RTCPeerConnection.prototype.iceGatheringState", | |
"globalThis.RTCPeerConnection.prototype.iceConnectionState", | |
"globalThis.RTCPeerConnection.prototype.connectionState", | |
"globalThis.RTCPeerConnection.prototype.canTrickleIceCandidates", | |
"globalThis.RTCPeerConnection.prototype.onnegotiationneeded", | |
"globalThis.RTCPeerConnection.prototype.onicecandidate", | |
"globalThis.RTCPeerConnection.prototype.onsignalingstatechange", | |
"globalThis.RTCPeerConnection.prototype.oniceconnectionstatechange", | |
"globalThis.RTCPeerConnection.prototype.onconnectionstatechange", | |
"globalThis.RTCPeerConnection.prototype.onicegatheringstatechange", | |
"globalThis.RTCPeerConnection.prototype.onicecandidateerror", | |
"globalThis.RTCPeerConnection.prototype.ontrack", | |
"globalThis.RTCPeerConnection.prototype.sctp", | |
"globalThis.RTCPeerConnection.prototype.ondatachannel", | |
"globalThis.RTCPeerConnection.prototype.onaddstream", | |
"globalThis.RTCPeerConnection.prototype.onremovestream", | |
"globalThis.RTCPeerConnection.prototype.addIceCandidate", | |
"globalThis.RTCPeerConnection.prototype.addStream", | |
"globalThis.RTCPeerConnection.prototype.addTrack", | |
"globalThis.RTCPeerConnection.prototype.addTransceiver", | |
"globalThis.RTCPeerConnection.prototype.close", | |
"globalThis.RTCPeerConnection.prototype.createAnswer", | |
"globalThis.RTCPeerConnection.prototype.createDTMFSender", | |
"globalThis.RTCPeerConnection.prototype.createDataChannel", | |
"globalThis.RTCPeerConnection.prototype.createOffer", | |
"globalThis.RTCPeerConnection.prototype.getConfiguration", | |
"globalThis.RTCPeerConnection.prototype.getLocalStreams", | |
"globalThis.RTCPeerConnection.prototype.getReceivers", | |
"globalThis.RTCPeerConnection.prototype.getRemoteStreams", | |
"globalThis.RTCPeerConnection.prototype.getSenders", | |
"globalThis.RTCPeerConnection.prototype.getStats", | |
"globalThis.RTCPeerConnection.prototype.getTransceivers", | |
"globalThis.RTCPeerConnection.prototype.removeStream", | |
"globalThis.RTCPeerConnection.prototype.removeTrack", | |
"globalThis.RTCPeerConnection.prototype.restartIce", | |
"globalThis.RTCPeerConnection.prototype.setConfiguration", | |
"globalThis.RTCPeerConnection.prototype.setLocalDescription", | |
"globalThis.RTCPeerConnection.prototype.setRemoteDescription", | |
"globalThis.RTCPeerConnection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCPeerConnection.generateCertificate", | |
"globalThis.RTCIceTransport", | |
"globalThis.RTCIceTransport.prototype.role", | |
"globalThis.RTCIceTransport.prototype.state", | |
"globalThis.RTCIceTransport.prototype.gatheringState", | |
"globalThis.RTCIceTransport.prototype.onstatechange", | |
"globalThis.RTCIceTransport.prototype.ongatheringstatechange", | |
"globalThis.RTCIceTransport.prototype.onselectedcandidatepairchange", | |
"globalThis.RTCIceTransport.prototype.getLocalCandidates", | |
"globalThis.RTCIceTransport.prototype.getLocalParameters", | |
"globalThis.RTCIceTransport.prototype.getRemoteCandidates", | |
"globalThis.RTCIceTransport.prototype.getRemoteParameters", | |
"globalThis.RTCIceTransport.prototype.getSelectedCandidatePair", | |
"globalThis.RTCIceTransport.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCIceCandidate", | |
"globalThis.RTCIceCandidate.prototype.candidate", | |
"globalThis.RTCIceCandidate.prototype.sdpMid", | |
"globalThis.RTCIceCandidate.prototype.sdpMLineIndex", | |
"globalThis.RTCIceCandidate.prototype.foundation", | |
"globalThis.RTCIceCandidate.prototype.component", | |
"globalThis.RTCIceCandidate.prototype.priority", | |
"globalThis.RTCIceCandidate.prototype.address", | |
"globalThis.RTCIceCandidate.prototype.protocol", | |
"globalThis.RTCIceCandidate.prototype.port", | |
"globalThis.RTCIceCandidate.prototype.type", | |
"globalThis.RTCIceCandidate.prototype.tcpType", | |
"globalThis.RTCIceCandidate.prototype.relatedAddress", | |
"globalThis.RTCIceCandidate.prototype.relatedPort", | |
"globalThis.RTCIceCandidate.prototype.usernameFragment", | |
"globalThis.RTCIceCandidate.prototype.toJSON", | |
"globalThis.RTCIceCandidate.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCErrorEvent", | |
"globalThis.RTCErrorEvent.prototype.error", | |
"globalThis.RTCErrorEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCError", | |
"globalThis.RTCError.prototype.errorDetail", | |
"globalThis.RTCError.prototype.sdpLineNumber", | |
"globalThis.RTCError.prototype.httpRequestStatusCode", | |
"globalThis.RTCError.prototype.sctpCauseCode", | |
"globalThis.RTCError.prototype.receivedAlert", | |
"globalThis.RTCError.prototype.sentAlert", | |
"globalThis.RTCError.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCEncodedVideoFrame", | |
"globalThis.RTCEncodedVideoFrame.prototype.type", | |
"globalThis.RTCEncodedVideoFrame.prototype.timestamp", | |
"globalThis.RTCEncodedVideoFrame.prototype.data", | |
"globalThis.RTCEncodedVideoFrame.prototype.getMetadata", | |
"globalThis.RTCEncodedVideoFrame.prototype.toString", | |
"globalThis.RTCEncodedVideoFrame.prototype.setMetadata", | |
"globalThis.RTCEncodedVideoFrame.prototype.setTimestamp", | |
"globalThis.RTCEncodedVideoFrame.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCEncodedAudioFrame", | |
"globalThis.RTCEncodedAudioFrame.prototype.timestamp", | |
"globalThis.RTCEncodedAudioFrame.prototype.data", | |
"globalThis.RTCEncodedAudioFrame.prototype.getMetadata", | |
"globalThis.RTCEncodedAudioFrame.prototype.toString", | |
"globalThis.RTCEncodedAudioFrame.prototype.setMetadata", | |
"globalThis.RTCEncodedAudioFrame.prototype.setTimestamp", | |
"globalThis.RTCEncodedAudioFrame.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCDtlsTransport", | |
"globalThis.RTCDtlsTransport.prototype.iceTransport", | |
"globalThis.RTCDtlsTransport.prototype.state", | |
"globalThis.RTCDtlsTransport.prototype.onstatechange", | |
"globalThis.RTCDtlsTransport.prototype.onerror", | |
"globalThis.RTCDtlsTransport.prototype.getRemoteCertificates", | |
"globalThis.RTCDtlsTransport.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCDataChannelEvent", | |
"globalThis.RTCDataChannelEvent.prototype.channel", | |
"globalThis.RTCDataChannelEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCDataChannel", | |
"globalThis.RTCDataChannel.prototype.label", | |
"globalThis.RTCDataChannel.prototype.ordered", | |
"globalThis.RTCDataChannel.prototype.maxPacketLifeTime", | |
"globalThis.RTCDataChannel.prototype.maxRetransmits", | |
"globalThis.RTCDataChannel.prototype.protocol", | |
"globalThis.RTCDataChannel.prototype.negotiated", | |
"globalThis.RTCDataChannel.prototype.id", | |
"globalThis.RTCDataChannel.prototype.readyState", | |
"globalThis.RTCDataChannel.prototype.bufferedAmount", | |
"globalThis.RTCDataChannel.prototype.bufferedAmountLowThreshold", | |
"globalThis.RTCDataChannel.prototype.onopen", | |
"globalThis.RTCDataChannel.prototype.onbufferedamountlow", | |
"globalThis.RTCDataChannel.prototype.onerror", | |
"globalThis.RTCDataChannel.prototype.onclosing", | |
"globalThis.RTCDataChannel.prototype.onclose", | |
"globalThis.RTCDataChannel.prototype.onmessage", | |
"globalThis.RTCDataChannel.prototype.binaryType", | |
"globalThis.RTCDataChannel.prototype.reliable", | |
"globalThis.RTCDataChannel.prototype.close", | |
"globalThis.RTCDataChannel.prototype.send", | |
"globalThis.RTCDataChannel.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCDTMFToneChangeEvent", | |
"globalThis.RTCDTMFToneChangeEvent.prototype.tone", | |
"globalThis.RTCDTMFToneChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCDTMFSender", | |
"globalThis.RTCDTMFSender.prototype.ontonechange", | |
"globalThis.RTCDTMFSender.prototype.canInsertDTMF", | |
"globalThis.RTCDTMFSender.prototype.toneBuffer", | |
"globalThis.RTCDTMFSender.prototype.insertDTMF", | |
"globalThis.RTCDTMFSender.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RTCCertificate", | |
"globalThis.RTCCertificate.prototype.expires", | |
"globalThis.RTCCertificate.prototype.getFingerprints", | |
"globalThis.RTCCertificate.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PromiseRejectionEvent", | |
"globalThis.PromiseRejectionEvent.prototype.promise", | |
"globalThis.PromiseRejectionEvent.prototype.reason", | |
"globalThis.PromiseRejectionEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ProgressEvent", | |
"globalThis.ProgressEvent.prototype.lengthComputable", | |
"globalThis.ProgressEvent.prototype.loaded", | |
"globalThis.ProgressEvent.prototype.total", | |
"globalThis.ProgressEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Profiler", | |
"globalThis.Profiler.prototype.sampleInterval", | |
"globalThis.Profiler.prototype.stopped", | |
"globalThis.Profiler.prototype.stop", | |
"globalThis.Profiler.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ProcessingInstruction", | |
"globalThis.ProcessingInstruction.prototype.target", | |
"globalThis.ProcessingInstruction.prototype.sheet", | |
"globalThis.ProcessingInstruction.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PopStateEvent", | |
"globalThis.PopStateEvent.prototype.state", | |
"globalThis.PopStateEvent.prototype.hasUAVisualTransition", | |
"globalThis.PopStateEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PointerEvent", | |
"globalThis.PointerEvent.prototype.pointerId", | |
"globalThis.PointerEvent.prototype.width", | |
"globalThis.PointerEvent.prototype.height", | |
"globalThis.PointerEvent.prototype.pressure", | |
"globalThis.PointerEvent.prototype.tiltX", | |
"globalThis.PointerEvent.prototype.tiltY", | |
"globalThis.PointerEvent.prototype.azimuthAngle", | |
"globalThis.PointerEvent.prototype.altitudeAngle", | |
"globalThis.PointerEvent.prototype.tangentialPressure", | |
"globalThis.PointerEvent.prototype.twist", | |
"globalThis.PointerEvent.prototype.pointerType", | |
"globalThis.PointerEvent.prototype.isPrimary", | |
"globalThis.PointerEvent.prototype.getCoalescedEvents", | |
"globalThis.PointerEvent.prototype.getPredictedEvents", | |
"globalThis.PointerEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PluginArray", | |
"globalThis.PluginArray.prototype.length", | |
"globalThis.PluginArray.prototype.item", | |
"globalThis.PluginArray.prototype.namedItem", | |
"globalThis.PluginArray.prototype.refresh", | |
"globalThis.PluginArray.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PluginArray.prototype.Symbol(Symbol.iterator)", | |
"globalThis.Plugin", | |
"globalThis.Plugin.prototype.name", | |
"globalThis.Plugin.prototype.filename", | |
"globalThis.Plugin.prototype.description", | |
"globalThis.Plugin.prototype.length", | |
"globalThis.Plugin.prototype.item", | |
"globalThis.Plugin.prototype.namedItem", | |
"globalThis.Plugin.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Plugin.prototype.Symbol(Symbol.iterator)", | |
"globalThis.PictureInPictureWindow", | |
"globalThis.PictureInPictureWindow.prototype.width", | |
"globalThis.PictureInPictureWindow.prototype.height", | |
"globalThis.PictureInPictureWindow.prototype.onresize", | |
"globalThis.PictureInPictureWindow.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PictureInPictureEvent", | |
"globalThis.PictureInPictureEvent.prototype.pictureInPictureWindow", | |
"globalThis.PictureInPictureEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PeriodicWave", | |
"globalThis.PeriodicWave.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceTiming", | |
"globalThis.PerformanceTiming.prototype.navigationStart", | |
"globalThis.PerformanceTiming.prototype.unloadEventStart", | |
"globalThis.PerformanceTiming.prototype.unloadEventEnd", | |
"globalThis.PerformanceTiming.prototype.redirectStart", | |
"globalThis.PerformanceTiming.prototype.redirectEnd", | |
"globalThis.PerformanceTiming.prototype.fetchStart", | |
"globalThis.PerformanceTiming.prototype.domainLookupStart", | |
"globalThis.PerformanceTiming.prototype.domainLookupEnd", | |
"globalThis.PerformanceTiming.prototype.connectStart", | |
"globalThis.PerformanceTiming.prototype.connectEnd", | |
"globalThis.PerformanceTiming.prototype.secureConnectionStart", | |
"globalThis.PerformanceTiming.prototype.requestStart", | |
"globalThis.PerformanceTiming.prototype.responseStart", | |
"globalThis.PerformanceTiming.prototype.responseEnd", | |
"globalThis.PerformanceTiming.prototype.domLoading", | |
"globalThis.PerformanceTiming.prototype.domInteractive", | |
"globalThis.PerformanceTiming.prototype.domContentLoadedEventStart", | |
"globalThis.PerformanceTiming.prototype.domContentLoadedEventEnd", | |
"globalThis.PerformanceTiming.prototype.domComplete", | |
"globalThis.PerformanceTiming.prototype.loadEventStart", | |
"globalThis.PerformanceTiming.prototype.loadEventEnd", | |
"globalThis.PerformanceTiming.prototype.toJSON", | |
"globalThis.PerformanceTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceServerTiming", | |
"globalThis.PerformanceServerTiming.prototype.name", | |
"globalThis.PerformanceServerTiming.prototype.duration", | |
"globalThis.PerformanceServerTiming.prototype.description", | |
"globalThis.PerformanceServerTiming.prototype.toJSON", | |
"globalThis.PerformanceServerTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceResourceTiming", | |
"globalThis.PerformanceResourceTiming.prototype.initiatorType", | |
"globalThis.PerformanceResourceTiming.prototype.nextHopProtocol", | |
"globalThis.PerformanceResourceTiming.prototype.deliveryType", | |
"globalThis.PerformanceResourceTiming.prototype.workerStart", | |
"globalThis.PerformanceResourceTiming.prototype.redirectStart", | |
"globalThis.PerformanceResourceTiming.prototype.redirectEnd", | |
"globalThis.PerformanceResourceTiming.prototype.fetchStart", | |
"globalThis.PerformanceResourceTiming.prototype.domainLookupStart", | |
"globalThis.PerformanceResourceTiming.prototype.domainLookupEnd", | |
"globalThis.PerformanceResourceTiming.prototype.connectStart", | |
"globalThis.PerformanceResourceTiming.prototype.connectEnd", | |
"globalThis.PerformanceResourceTiming.prototype.secureConnectionStart", | |
"globalThis.PerformanceResourceTiming.prototype.requestStart", | |
"globalThis.PerformanceResourceTiming.prototype.responseStart", | |
"globalThis.PerformanceResourceTiming.prototype.responseEnd", | |
"globalThis.PerformanceResourceTiming.prototype.transferSize", | |
"globalThis.PerformanceResourceTiming.prototype.encodedBodySize", | |
"globalThis.PerformanceResourceTiming.prototype.decodedBodySize", | |
"globalThis.PerformanceResourceTiming.prototype.serverTiming", | |
"globalThis.PerformanceResourceTiming.prototype.toJSON", | |
"globalThis.PerformanceResourceTiming.prototype.renderBlockingStatus", | |
"globalThis.PerformanceResourceTiming.prototype.responseStatus", | |
"globalThis.PerformanceResourceTiming.prototype.contentType", | |
"globalThis.PerformanceResourceTiming.prototype.firstInterimResponseStart", | |
"globalThis.PerformanceResourceTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformancePaintTiming", | |
"globalThis.PerformancePaintTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceObserverEntryList", | |
"globalThis.PerformanceObserverEntryList.prototype.getEntries", | |
"globalThis.PerformanceObserverEntryList.prototype.getEntriesByName", | |
"globalThis.PerformanceObserverEntryList.prototype.getEntriesByType", | |
"globalThis.PerformanceObserverEntryList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceObserver", | |
"globalThis.PerformanceObserver.prototype.disconnect", | |
"globalThis.PerformanceObserver.prototype.observe", | |
"globalThis.PerformanceObserver.prototype.takeRecords", | |
"globalThis.PerformanceObserver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceObserver.supportedEntryTypes", | |
"globalThis.PerformanceNavigationTiming", | |
"globalThis.PerformanceNavigationTiming.prototype.unloadEventStart", | |
"globalThis.PerformanceNavigationTiming.prototype.unloadEventEnd", | |
"globalThis.PerformanceNavigationTiming.prototype.domInteractive", | |
"globalThis.PerformanceNavigationTiming.prototype.domContentLoadedEventStart", | |
"globalThis.PerformanceNavigationTiming.prototype.domContentLoadedEventEnd", | |
"globalThis.PerformanceNavigationTiming.prototype.domComplete", | |
"globalThis.PerformanceNavigationTiming.prototype.loadEventStart", | |
"globalThis.PerformanceNavigationTiming.prototype.loadEventEnd", | |
"globalThis.PerformanceNavigationTiming.prototype.type", | |
"globalThis.PerformanceNavigationTiming.prototype.redirectCount", | |
"globalThis.PerformanceNavigationTiming.prototype.criticalCHRestart", | |
"globalThis.PerformanceNavigationTiming.prototype.activationStart", | |
"globalThis.PerformanceNavigationTiming.prototype.toJSON", | |
"globalThis.PerformanceNavigationTiming.prototype.systemEntropy", | |
"globalThis.PerformanceNavigationTiming.prototype.notRestoredReasons", | |
"globalThis.PerformanceNavigationTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceNavigation", | |
"globalThis.PerformanceNavigation.prototype.type", | |
"globalThis.PerformanceNavigation.prototype.redirectCount", | |
"globalThis.PerformanceNavigation.prototype.toJSON", | |
"globalThis.PerformanceNavigation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceMeasure", | |
"globalThis.PerformanceMeasure.prototype.detail", | |
"globalThis.PerformanceMeasure.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceMark", | |
"globalThis.PerformanceMark.prototype.detail", | |
"globalThis.PerformanceMark.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceLongTaskTiming", | |
"globalThis.PerformanceLongTaskTiming.prototype.attribution", | |
"globalThis.PerformanceLongTaskTiming.prototype.toJSON", | |
"globalThis.PerformanceLongTaskTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceEventTiming", | |
"globalThis.PerformanceEventTiming.prototype.processingStart", | |
"globalThis.PerformanceEventTiming.prototype.processingEnd", | |
"globalThis.PerformanceEventTiming.prototype.cancelable", | |
"globalThis.PerformanceEventTiming.prototype.target", | |
"globalThis.PerformanceEventTiming.prototype.interactionId", | |
"globalThis.PerformanceEventTiming.prototype.toJSON", | |
"globalThis.PerformanceEventTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceEntry", | |
"globalThis.PerformanceEntry.prototype.name", | |
"globalThis.PerformanceEntry.prototype.entryType", | |
"globalThis.PerformanceEntry.prototype.startTime", | |
"globalThis.PerformanceEntry.prototype.duration", | |
"globalThis.PerformanceEntry.prototype.toJSON", | |
"globalThis.PerformanceEntry.prototype.navigationId", | |
"globalThis.PerformanceEntry.prototype.source", | |
"globalThis.PerformanceEntry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceElementTiming", | |
"globalThis.PerformanceElementTiming.prototype.renderTime", | |
"globalThis.PerformanceElementTiming.prototype.loadTime", | |
"globalThis.PerformanceElementTiming.prototype.intersectionRect", | |
"globalThis.PerformanceElementTiming.prototype.identifier", | |
"globalThis.PerformanceElementTiming.prototype.naturalWidth", | |
"globalThis.PerformanceElementTiming.prototype.naturalHeight", | |
"globalThis.PerformanceElementTiming.prototype.id", | |
"globalThis.PerformanceElementTiming.prototype.element", | |
"globalThis.PerformanceElementTiming.prototype.url", | |
"globalThis.PerformanceElementTiming.prototype.toJSON", | |
"globalThis.PerformanceElementTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Performance", | |
"globalThis.Performance.prototype.timeOrigin", | |
"globalThis.Performance.prototype.onresourcetimingbufferfull", | |
"globalThis.Performance.prototype.clearMarks", | |
"globalThis.Performance.prototype.clearMeasures", | |
"globalThis.Performance.prototype.clearResourceTimings", | |
"globalThis.Performance.prototype.getEntries", | |
"globalThis.Performance.prototype.getEntriesByName", | |
"globalThis.Performance.prototype.getEntriesByType", | |
"globalThis.Performance.prototype.mark", | |
"globalThis.Performance.prototype.measure", | |
"globalThis.Performance.prototype.now", | |
"globalThis.Performance.prototype.setResourceTimingBufferSize", | |
"globalThis.Performance.prototype.toJSON", | |
"globalThis.Performance.prototype.timing", | |
"globalThis.Performance.prototype.navigation", | |
"globalThis.Performance.prototype.memory", | |
"globalThis.Performance.prototype.eventCounts", | |
"globalThis.Performance.prototype.interactionCount", | |
"globalThis.Performance.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Path2D", | |
"globalThis.Path2D.prototype.addPath", | |
"globalThis.Path2D.prototype.roundRect", | |
"globalThis.Path2D.prototype.arc", | |
"globalThis.Path2D.prototype.arcTo", | |
"globalThis.Path2D.prototype.bezierCurveTo", | |
"globalThis.Path2D.prototype.closePath", | |
"globalThis.Path2D.prototype.ellipse", | |
"globalThis.Path2D.prototype.lineTo", | |
"globalThis.Path2D.prototype.moveTo", | |
"globalThis.Path2D.prototype.quadraticCurveTo", | |
"globalThis.Path2D.prototype.rect", | |
"globalThis.Path2D.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PannerNode", | |
"globalThis.PannerNode.prototype.panningModel", | |
"globalThis.PannerNode.prototype.positionX", | |
"globalThis.PannerNode.prototype.positionY", | |
"globalThis.PannerNode.prototype.positionZ", | |
"globalThis.PannerNode.prototype.orientationX", | |
"globalThis.PannerNode.prototype.orientationY", | |
"globalThis.PannerNode.prototype.orientationZ", | |
"globalThis.PannerNode.prototype.distanceModel", | |
"globalThis.PannerNode.prototype.refDistance", | |
"globalThis.PannerNode.prototype.maxDistance", | |
"globalThis.PannerNode.prototype.rolloffFactor", | |
"globalThis.PannerNode.prototype.coneInnerAngle", | |
"globalThis.PannerNode.prototype.coneOuterAngle", | |
"globalThis.PannerNode.prototype.coneOuterGain", | |
"globalThis.PannerNode.prototype.setOrientation", | |
"globalThis.PannerNode.prototype.setPosition", | |
"globalThis.PannerNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PageTransitionEvent", | |
"globalThis.PageTransitionEvent.prototype.persisted", | |
"globalThis.PageTransitionEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OverconstrainedError", | |
"globalThis.OverconstrainedError.prototype.constraint", | |
"globalThis.OverconstrainedError.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OscillatorNode", | |
"globalThis.OscillatorNode.prototype.type", | |
"globalThis.OscillatorNode.prototype.frequency", | |
"globalThis.OscillatorNode.prototype.detune", | |
"globalThis.OscillatorNode.prototype.setPeriodicWave", | |
"globalThis.OscillatorNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OffscreenCanvasRenderingContext2D", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.canvas", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.globalAlpha", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.globalCompositeOperation", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.filter", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.imageSmoothingEnabled", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.imageSmoothingQuality", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.strokeStyle", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fillStyle", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.shadowOffsetX", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.shadowOffsetY", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.shadowBlur", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.shadowColor", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.lineWidth", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.lineCap", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.lineJoin", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.miterLimit", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.lineDashOffset", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.font", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.textAlign", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.textBaseline", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.direction", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fontKerning", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fontStretch", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fontVariantCaps", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.letterSpacing", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.textRendering", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.wordSpacing", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.clip", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.createConicGradient", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.createImageData", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.createLinearGradient", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.createPattern", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.createRadialGradient", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.drawImage", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fill", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fillText", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.getImageData", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.getLineDash", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.getTransform", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.isContextLost", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.isPointInPath", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.isPointInStroke", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.measureText", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.putImageData", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.reset", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.roundRect", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.save", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.scale", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.setLineDash", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.setTransform", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.stroke", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.strokeText", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.transform", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.translate", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.arc", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.arcTo", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.beginPath", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.bezierCurveTo", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.clearRect", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.closePath", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.ellipse", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.fillRect", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.lineTo", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.moveTo", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.quadraticCurveTo", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.rect", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.resetTransform", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.restore", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.rotate", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.strokeRect", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.beginLayer", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.commit", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.endLayer", | |
"globalThis.OffscreenCanvasRenderingContext2D.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OffscreenCanvas", | |
"globalThis.OffscreenCanvas.prototype.width", | |
"globalThis.OffscreenCanvas.prototype.height", | |
"globalThis.OffscreenCanvas.prototype.oncontextlost", | |
"globalThis.OffscreenCanvas.prototype.oncontextrestored", | |
"globalThis.OffscreenCanvas.prototype.convertToBlob", | |
"globalThis.OffscreenCanvas.prototype.getContext", | |
"globalThis.OffscreenCanvas.prototype.transferToImageBitmap", | |
"globalThis.OffscreenCanvas.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OfflineAudioContext", | |
"globalThis.OfflineAudioContext.prototype.oncomplete", | |
"globalThis.OfflineAudioContext.prototype.length", | |
"globalThis.OfflineAudioContext.prototype.resume", | |
"globalThis.OfflineAudioContext.prototype.startRendering", | |
"globalThis.OfflineAudioContext.prototype.suspend", | |
"globalThis.OfflineAudioContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OfflineAudioCompletionEvent", | |
"globalThis.OfflineAudioCompletionEvent.prototype.renderedBuffer", | |
"globalThis.OfflineAudioCompletionEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NodeList", | |
"globalThis.NodeList.prototype.entries", | |
"globalThis.NodeList.prototype.keys", | |
"globalThis.NodeList.prototype.values", | |
"globalThis.NodeList.prototype.forEach", | |
"globalThis.NodeList.prototype.length", | |
"globalThis.NodeList.prototype.item", | |
"globalThis.NodeList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NodeList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.NodeIterator", | |
"globalThis.NodeIterator.prototype.root", | |
"globalThis.NodeIterator.prototype.referenceNode", | |
"globalThis.NodeIterator.prototype.pointerBeforeReferenceNode", | |
"globalThis.NodeIterator.prototype.whatToShow", | |
"globalThis.NodeIterator.prototype.filter", | |
"globalThis.NodeIterator.prototype.detach", | |
"globalThis.NodeIterator.prototype.nextNode", | |
"globalThis.NodeIterator.prototype.previousNode", | |
"globalThis.NodeIterator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NodeFilter", | |
"globalThis.Node", | |
"globalThis.Node.prototype.nodeType", | |
"globalThis.Node.prototype.nodeName", | |
"globalThis.Node.prototype.baseURI", | |
"globalThis.Node.prototype.isConnected", | |
"globalThis.Node.prototype.ownerDocument", | |
"globalThis.Node.prototype.parentNode", | |
"globalThis.Node.prototype.parentElement", | |
"globalThis.Node.prototype.childNodes", | |
"globalThis.Node.prototype.firstChild", | |
"globalThis.Node.prototype.lastChild", | |
"globalThis.Node.prototype.previousSibling", | |
"globalThis.Node.prototype.nextSibling", | |
"globalThis.Node.prototype.nodeValue", | |
"globalThis.Node.prototype.textContent", | |
"globalThis.Node.prototype.appendChild", | |
"globalThis.Node.prototype.cloneNode", | |
"globalThis.Node.prototype.compareDocumentPosition", | |
"globalThis.Node.prototype.contains", | |
"globalThis.Node.prototype.getRootNode", | |
"globalThis.Node.prototype.hasChildNodes", | |
"globalThis.Node.prototype.insertBefore", | |
"globalThis.Node.prototype.isDefaultNamespace", | |
"globalThis.Node.prototype.isEqualNode", | |
"globalThis.Node.prototype.isSameNode", | |
"globalThis.Node.prototype.lookupNamespaceURI", | |
"globalThis.Node.prototype.lookupPrefix", | |
"globalThis.Node.prototype.normalize", | |
"globalThis.Node.prototype.removeChild", | |
"globalThis.Node.prototype.replaceChild", | |
"globalThis.Node.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NetworkInformation", | |
"globalThis.NetworkInformation.prototype.onchange", | |
"globalThis.NetworkInformation.prototype.effectiveType", | |
"globalThis.NetworkInformation.prototype.rtt", | |
"globalThis.NetworkInformation.prototype.downlink", | |
"globalThis.NetworkInformation.prototype.saveData", | |
"globalThis.NetworkInformation.prototype.type", | |
"globalThis.NetworkInformation.prototype.downlinkMax", | |
"globalThis.NetworkInformation.prototype.ontypechange", | |
"globalThis.NetworkInformation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Navigator", | |
"globalThis.Navigator.prototype.vendorSub", | |
"globalThis.Navigator.prototype.productSub", | |
"globalThis.Navigator.prototype.vendor", | |
"globalThis.Navigator.prototype.maxTouchPoints", | |
"globalThis.Navigator.prototype.scheduling", | |
"globalThis.Navigator.prototype.userActivation", | |
"globalThis.Navigator.prototype.doNotTrack", | |
"globalThis.Navigator.prototype.geolocation", | |
"globalThis.Navigator.prototype.connection", | |
"globalThis.Navigator.prototype.plugins", | |
"globalThis.Navigator.prototype.mimeTypes", | |
"globalThis.Navigator.prototype.pdfViewerEnabled", | |
"globalThis.Navigator.prototype.webkitTemporaryStorage", | |
"globalThis.Navigator.prototype.webkitPersistentStorage", | |
"globalThis.Navigator.prototype.hardwareConcurrency", | |
"globalThis.Navigator.prototype.cookieEnabled", | |
"globalThis.Navigator.prototype.appCodeName", | |
"globalThis.Navigator.prototype.appName", | |
"globalThis.Navigator.prototype.appVersion", | |
"globalThis.Navigator.prototype.platform", | |
"globalThis.Navigator.prototype.product", | |
"globalThis.Navigator.prototype.userAgent", | |
"globalThis.Navigator.prototype.language", | |
"globalThis.Navigator.prototype.languages", | |
"globalThis.Navigator.prototype.onLine", | |
"globalThis.Navigator.prototype.webdriver", | |
"globalThis.Navigator.prototype.getGamepads", | |
"globalThis.Navigator.prototype.javaEnabled", | |
"globalThis.Navigator.prototype.sendBeacon", | |
"globalThis.Navigator.prototype.vibrate", | |
"globalThis.Navigator.prototype.ink", | |
"globalThis.Navigator.prototype.mediaCapabilities", | |
"globalThis.Navigator.prototype.mediaSession", | |
"globalThis.Navigator.prototype.permissions", | |
"globalThis.Navigator.prototype.windowControlsOverlay", | |
"globalThis.Navigator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NavigationTransition", | |
"globalThis.NavigationTransition.prototype.navigationType", | |
"globalThis.NavigationTransition.prototype.from", | |
"globalThis.NavigationTransition.prototype.finished", | |
"globalThis.NavigationTransition.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NavigationHistoryEntry", | |
"globalThis.NavigationHistoryEntry.prototype.key", | |
"globalThis.NavigationHistoryEntry.prototype.id", | |
"globalThis.NavigationHistoryEntry.prototype.url", | |
"globalThis.NavigationHistoryEntry.prototype.index", | |
"globalThis.NavigationHistoryEntry.prototype.sameDocument", | |
"globalThis.NavigationHistoryEntry.prototype.ondispose", | |
"globalThis.NavigationHistoryEntry.prototype.getState", | |
"globalThis.NavigationHistoryEntry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NavigationDestination", | |
"globalThis.NavigationDestination.prototype.key", | |
"globalThis.NavigationDestination.prototype.id", | |
"globalThis.NavigationDestination.prototype.url", | |
"globalThis.NavigationDestination.prototype.index", | |
"globalThis.NavigationDestination.prototype.sameDocument", | |
"globalThis.NavigationDestination.prototype.getState", | |
"globalThis.NavigationDestination.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NavigationCurrentEntryChangeEvent", | |
"globalThis.NavigationCurrentEntryChangeEvent.prototype.navigationType", | |
"globalThis.NavigationCurrentEntryChangeEvent.prototype.from", | |
"globalThis.NavigationCurrentEntryChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Navigation", | |
"globalThis.Navigation.prototype.currentEntry", | |
"globalThis.Navigation.prototype.transition", | |
"globalThis.Navigation.prototype.canGoBack", | |
"globalThis.Navigation.prototype.canGoForward", | |
"globalThis.Navigation.prototype.onnavigate", | |
"globalThis.Navigation.prototype.onnavigatesuccess", | |
"globalThis.Navigation.prototype.onnavigateerror", | |
"globalThis.Navigation.prototype.oncurrententrychange", | |
"globalThis.Navigation.prototype.back", | |
"globalThis.Navigation.prototype.entries", | |
"globalThis.Navigation.prototype.forward", | |
"globalThis.Navigation.prototype.navigate", | |
"globalThis.Navigation.prototype.reload", | |
"globalThis.Navigation.prototype.traverseTo", | |
"globalThis.Navigation.prototype.updateCurrentEntry", | |
"globalThis.Navigation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NavigateEvent", | |
"globalThis.NavigateEvent.prototype.navigationType", | |
"globalThis.NavigateEvent.prototype.destination", | |
"globalThis.NavigateEvent.prototype.canTransition", | |
"globalThis.NavigateEvent.prototype.canIntercept", | |
"globalThis.NavigateEvent.prototype.userInitiated", | |
"globalThis.NavigateEvent.prototype.hashChange", | |
"globalThis.NavigateEvent.prototype.signal", | |
"globalThis.NavigateEvent.prototype.formData", | |
"globalThis.NavigateEvent.prototype.downloadRequest", | |
"globalThis.NavigateEvent.prototype.info", | |
"globalThis.NavigateEvent.prototype.intercept", | |
"globalThis.NavigateEvent.prototype.scroll", | |
"globalThis.NavigateEvent.prototype.hasUAVisualTransition", | |
"globalThis.NavigateEvent.prototype.sourceElement", | |
"globalThis.NavigateEvent.prototype.commit", | |
"globalThis.NavigateEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NamedNodeMap", | |
"globalThis.NamedNodeMap.prototype.length", | |
"globalThis.NamedNodeMap.prototype.getNamedItem", | |
"globalThis.NamedNodeMap.prototype.getNamedItemNS", | |
"globalThis.NamedNodeMap.prototype.item", | |
"globalThis.NamedNodeMap.prototype.removeNamedItem", | |
"globalThis.NamedNodeMap.prototype.removeNamedItemNS", | |
"globalThis.NamedNodeMap.prototype.setNamedItem", | |
"globalThis.NamedNodeMap.prototype.setNamedItemNS", | |
"globalThis.NamedNodeMap.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NamedNodeMap.prototype.Symbol(Symbol.iterator)", | |
"globalThis.MutationRecord", | |
"globalThis.MutationRecord.prototype.type", | |
"globalThis.MutationRecord.prototype.target", | |
"globalThis.MutationRecord.prototype.addedNodes", | |
"globalThis.MutationRecord.prototype.removedNodes", | |
"globalThis.MutationRecord.prototype.previousSibling", | |
"globalThis.MutationRecord.prototype.nextSibling", | |
"globalThis.MutationRecord.prototype.attributeName", | |
"globalThis.MutationRecord.prototype.attributeNamespace", | |
"globalThis.MutationRecord.prototype.oldValue", | |
"globalThis.MutationRecord.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MutationObserver", | |
"globalThis.MutationObserver.prototype.disconnect", | |
"globalThis.MutationObserver.prototype.observe", | |
"globalThis.MutationObserver.prototype.takeRecords", | |
"globalThis.MutationObserver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MouseEvent", | |
"globalThis.MouseEvent.prototype.screenX", | |
"globalThis.MouseEvent.prototype.screenY", | |
"globalThis.MouseEvent.prototype.clientX", | |
"globalThis.MouseEvent.prototype.clientY", | |
"globalThis.MouseEvent.prototype.ctrlKey", | |
"globalThis.MouseEvent.prototype.shiftKey", | |
"globalThis.MouseEvent.prototype.altKey", | |
"globalThis.MouseEvent.prototype.metaKey", | |
"globalThis.MouseEvent.prototype.button", | |
"globalThis.MouseEvent.prototype.buttons", | |
"globalThis.MouseEvent.prototype.relatedTarget", | |
"globalThis.MouseEvent.prototype.pageX", | |
"globalThis.MouseEvent.prototype.pageY", | |
"globalThis.MouseEvent.prototype.x", | |
"globalThis.MouseEvent.prototype.y", | |
"globalThis.MouseEvent.prototype.offsetX", | |
"globalThis.MouseEvent.prototype.offsetY", | |
"globalThis.MouseEvent.prototype.movementX", | |
"globalThis.MouseEvent.prototype.movementY", | |
"globalThis.MouseEvent.prototype.fromElement", | |
"globalThis.MouseEvent.prototype.toElement", | |
"globalThis.MouseEvent.prototype.layerX", | |
"globalThis.MouseEvent.prototype.layerY", | |
"globalThis.MouseEvent.prototype.getModifierState", | |
"globalThis.MouseEvent.prototype.initMouseEvent", | |
"globalThis.MouseEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MimeTypeArray", | |
"globalThis.MimeTypeArray.prototype.length", | |
"globalThis.MimeTypeArray.prototype.item", | |
"globalThis.MimeTypeArray.prototype.namedItem", | |
"globalThis.MimeTypeArray.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MimeTypeArray.prototype.Symbol(Symbol.iterator)", | |
"globalThis.MimeType", | |
"globalThis.MimeType.prototype.type", | |
"globalThis.MimeType.prototype.suffixes", | |
"globalThis.MimeType.prototype.description", | |
"globalThis.MimeType.prototype.enabledPlugin", | |
"globalThis.MimeType.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MessagePort", | |
"globalThis.MessagePort.prototype.onmessage", | |
"globalThis.MessagePort.prototype.onmessageerror", | |
"globalThis.MessagePort.prototype.close", | |
"globalThis.MessagePort.prototype.postMessage", | |
"globalThis.MessagePort.prototype.start", | |
"globalThis.MessagePort.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MessageEvent", | |
"globalThis.MessageEvent.prototype.data", | |
"globalThis.MessageEvent.prototype.origin", | |
"globalThis.MessageEvent.prototype.lastEventId", | |
"globalThis.MessageEvent.prototype.source", | |
"globalThis.MessageEvent.prototype.ports", | |
"globalThis.MessageEvent.prototype.userActivation", | |
"globalThis.MessageEvent.prototype.initMessageEvent", | |
"globalThis.MessageEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MessageChannel", | |
"globalThis.MessageChannel.prototype.port1", | |
"globalThis.MessageChannel.prototype.port2", | |
"globalThis.MessageChannel.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamTrackVideoStats", | |
"globalThis.MediaStreamTrackVideoStats.prototype.deliveredFrames", | |
"globalThis.MediaStreamTrackVideoStats.prototype.discardedFrames", | |
"globalThis.MediaStreamTrackVideoStats.prototype.totalFrames", | |
"globalThis.MediaStreamTrackVideoStats.prototype.toJSON", | |
"globalThis.MediaStreamTrackVideoStats.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamTrackProcessor", | |
"globalThis.MediaStreamTrackProcessor.prototype.readable", | |
"globalThis.MediaStreamTrackProcessor.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamTrackGenerator", | |
"globalThis.MediaStreamTrackGenerator.prototype.writable", | |
"globalThis.MediaStreamTrackGenerator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamTrackEvent", | |
"globalThis.MediaStreamTrackEvent.prototype.track", | |
"globalThis.MediaStreamTrackEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamTrack", | |
"globalThis.MediaStreamTrack.prototype.kind", | |
"globalThis.MediaStreamTrack.prototype.id", | |
"globalThis.MediaStreamTrack.prototype.label", | |
"globalThis.MediaStreamTrack.prototype.enabled", | |
"globalThis.MediaStreamTrack.prototype.muted", | |
"globalThis.MediaStreamTrack.prototype.onmute", | |
"globalThis.MediaStreamTrack.prototype.onunmute", | |
"globalThis.MediaStreamTrack.prototype.readyState", | |
"globalThis.MediaStreamTrack.prototype.onended", | |
"globalThis.MediaStreamTrack.prototype.stats", | |
"globalThis.MediaStreamTrack.prototype.contentHint", | |
"globalThis.MediaStreamTrack.prototype.applyConstraints", | |
"globalThis.MediaStreamTrack.prototype.clone", | |
"globalThis.MediaStreamTrack.prototype.getCapabilities", | |
"globalThis.MediaStreamTrack.prototype.getConstraints", | |
"globalThis.MediaStreamTrack.prototype.getSettings", | |
"globalThis.MediaStreamTrack.prototype.stop", | |
"globalThis.MediaStreamTrack.prototype.oncapturehandlechange", | |
"globalThis.MediaStreamTrack.prototype.getCaptureHandle", | |
"globalThis.MediaStreamTrack.prototype.onconfigurationchange", | |
"globalThis.MediaStreamTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamEvent", | |
"globalThis.MediaStreamEvent.prototype.stream", | |
"globalThis.MediaStreamEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamAudioSourceNode", | |
"globalThis.MediaStreamAudioSourceNode.prototype.mediaStream", | |
"globalThis.MediaStreamAudioSourceNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStreamAudioDestinationNode", | |
"globalThis.MediaStreamAudioDestinationNode.prototype.stream", | |
"globalThis.MediaStreamAudioDestinationNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaStream", | |
"globalThis.MediaStream.prototype.id", | |
"globalThis.MediaStream.prototype.active", | |
"globalThis.MediaStream.prototype.onaddtrack", | |
"globalThis.MediaStream.prototype.onremovetrack", | |
"globalThis.MediaStream.prototype.onactive", | |
"globalThis.MediaStream.prototype.oninactive", | |
"globalThis.MediaStream.prototype.addTrack", | |
"globalThis.MediaStream.prototype.clone", | |
"globalThis.MediaStream.prototype.getAudioTracks", | |
"globalThis.MediaStream.prototype.getTrackById", | |
"globalThis.MediaStream.prototype.getTracks", | |
"globalThis.MediaStream.prototype.getVideoTracks", | |
"globalThis.MediaStream.prototype.removeTrack", | |
"globalThis.MediaStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaSourceHandle", | |
"globalThis.MediaSourceHandle.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaSource", | |
"globalThis.MediaSource.prototype.sourceBuffers", | |
"globalThis.MediaSource.prototype.activeSourceBuffers", | |
"globalThis.MediaSource.prototype.duration", | |
"globalThis.MediaSource.prototype.onsourceopen", | |
"globalThis.MediaSource.prototype.onsourceended", | |
"globalThis.MediaSource.prototype.onsourceclose", | |
"globalThis.MediaSource.prototype.readyState", | |
"globalThis.MediaSource.prototype.addSourceBuffer", | |
"globalThis.MediaSource.prototype.clearLiveSeekableRange", | |
"globalThis.MediaSource.prototype.endOfStream", | |
"globalThis.MediaSource.prototype.removeSourceBuffer", | |
"globalThis.MediaSource.prototype.setLiveSeekableRange", | |
"globalThis.MediaSource.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaSource.canConstructInDedicatedWorker", | |
"globalThis.MediaSource.isTypeSupported", | |
"globalThis.MediaRecorder", | |
"globalThis.MediaRecorder.prototype.stream", | |
"globalThis.MediaRecorder.prototype.mimeType", | |
"globalThis.MediaRecorder.prototype.state", | |
"globalThis.MediaRecorder.prototype.onstart", | |
"globalThis.MediaRecorder.prototype.onstop", | |
"globalThis.MediaRecorder.prototype.ondataavailable", | |
"globalThis.MediaRecorder.prototype.onpause", | |
"globalThis.MediaRecorder.prototype.onresume", | |
"globalThis.MediaRecorder.prototype.onerror", | |
"globalThis.MediaRecorder.prototype.videoBitsPerSecond", | |
"globalThis.MediaRecorder.prototype.audioBitsPerSecond", | |
"globalThis.MediaRecorder.prototype.audioBitrateMode", | |
"globalThis.MediaRecorder.prototype.pause", | |
"globalThis.MediaRecorder.prototype.requestData", | |
"globalThis.MediaRecorder.prototype.resume", | |
"globalThis.MediaRecorder.prototype.start", | |
"globalThis.MediaRecorder.prototype.stop", | |
"globalThis.MediaRecorder.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaRecorder.isTypeSupported", | |
"globalThis.MediaQueryListEvent", | |
"globalThis.MediaQueryListEvent.prototype.media", | |
"globalThis.MediaQueryListEvent.prototype.matches", | |
"globalThis.MediaQueryListEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaQueryList", | |
"globalThis.MediaQueryList.prototype.media", | |
"globalThis.MediaQueryList.prototype.matches", | |
"globalThis.MediaQueryList.prototype.onchange", | |
"globalThis.MediaQueryList.prototype.addListener", | |
"globalThis.MediaQueryList.prototype.removeListener", | |
"globalThis.MediaQueryList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaList", | |
"globalThis.MediaList.prototype.length", | |
"globalThis.MediaList.prototype.mediaText", | |
"globalThis.MediaList.prototype.appendMedium", | |
"globalThis.MediaList.prototype.deleteMedium", | |
"globalThis.MediaList.prototype.item", | |
"globalThis.MediaList.prototype.toString", | |
"globalThis.MediaList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.MediaError", | |
"globalThis.MediaError.prototype.code", | |
"globalThis.MediaError.prototype.message", | |
"globalThis.MediaError.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaEncryptedEvent", | |
"globalThis.MediaEncryptedEvent.prototype.initDataType", | |
"globalThis.MediaEncryptedEvent.prototype.initData", | |
"globalThis.MediaEncryptedEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaElementAudioSourceNode", | |
"globalThis.MediaElementAudioSourceNode.prototype.mediaElement", | |
"globalThis.MediaElementAudioSourceNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaCapabilities", | |
"globalThis.MediaCapabilities.prototype.decodingInfo", | |
"globalThis.MediaCapabilities.prototype.encodingInfo", | |
"globalThis.MediaCapabilities.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MathMLElement", | |
"globalThis.MathMLElement.prototype.onbeforexrselect", | |
"globalThis.MathMLElement.prototype.onabort", | |
"globalThis.MathMLElement.prototype.onbeforeinput", | |
"globalThis.MathMLElement.prototype.onbeforetoggle", | |
"globalThis.MathMLElement.prototype.onblur", | |
"globalThis.MathMLElement.prototype.oncancel", | |
"globalThis.MathMLElement.prototype.oncanplay", | |
"globalThis.MathMLElement.prototype.oncanplaythrough", | |
"globalThis.MathMLElement.prototype.onchange", | |
"globalThis.MathMLElement.prototype.onclick", | |
"globalThis.MathMLElement.prototype.onclose", | |
"globalThis.MathMLElement.prototype.oncontextlost", | |
"globalThis.MathMLElement.prototype.oncontextmenu", | |
"globalThis.MathMLElement.prototype.oncontextrestored", | |
"globalThis.MathMLElement.prototype.oncuechange", | |
"globalThis.MathMLElement.prototype.ondblclick", | |
"globalThis.MathMLElement.prototype.ondrag", | |
"globalThis.MathMLElement.prototype.ondragend", | |
"globalThis.MathMLElement.prototype.ondragenter", | |
"globalThis.MathMLElement.prototype.ondragleave", | |
"globalThis.MathMLElement.prototype.ondragover", | |
"globalThis.MathMLElement.prototype.ondragstart", | |
"globalThis.MathMLElement.prototype.ondrop", | |
"globalThis.MathMLElement.prototype.ondurationchange", | |
"globalThis.MathMLElement.prototype.onemptied", | |
"globalThis.MathMLElement.prototype.onended", | |
"globalThis.MathMLElement.prototype.onerror", | |
"globalThis.MathMLElement.prototype.onfocus", | |
"globalThis.MathMLElement.prototype.onformdata", | |
"globalThis.MathMLElement.prototype.oninput", | |
"globalThis.MathMLElement.prototype.oninvalid", | |
"globalThis.MathMLElement.prototype.onkeydown", | |
"globalThis.MathMLElement.prototype.onkeypress", | |
"globalThis.MathMLElement.prototype.onkeyup", | |
"globalThis.MathMLElement.prototype.onload", | |
"globalThis.MathMLElement.prototype.onloadeddata", | |
"globalThis.MathMLElement.prototype.onloadedmetadata", | |
"globalThis.MathMLElement.prototype.onloadstart", | |
"globalThis.MathMLElement.prototype.onmousedown", | |
"globalThis.MathMLElement.prototype.onmouseenter", | |
"globalThis.MathMLElement.prototype.onmouseleave", | |
"globalThis.MathMLElement.prototype.onmousemove", | |
"globalThis.MathMLElement.prototype.onmouseout", | |
"globalThis.MathMLElement.prototype.onmouseover", | |
"globalThis.MathMLElement.prototype.onmouseup", | |
"globalThis.MathMLElement.prototype.onmousewheel", | |
"globalThis.MathMLElement.prototype.onpause", | |
"globalThis.MathMLElement.prototype.onplay", | |
"globalThis.MathMLElement.prototype.onplaying", | |
"globalThis.MathMLElement.prototype.onprogress", | |
"globalThis.MathMLElement.prototype.onratechange", | |
"globalThis.MathMLElement.prototype.onreset", | |
"globalThis.MathMLElement.prototype.onresize", | |
"globalThis.MathMLElement.prototype.onscroll", | |
"globalThis.MathMLElement.prototype.onsecuritypolicyviolation", | |
"globalThis.MathMLElement.prototype.onseeked", | |
"globalThis.MathMLElement.prototype.onseeking", | |
"globalThis.MathMLElement.prototype.onselect", | |
"globalThis.MathMLElement.prototype.onslotchange", | |
"globalThis.MathMLElement.prototype.onstalled", | |
"globalThis.MathMLElement.prototype.onsubmit", | |
"globalThis.MathMLElement.prototype.onsuspend", | |
"globalThis.MathMLElement.prototype.ontimeupdate", | |
"globalThis.MathMLElement.prototype.ontoggle", | |
"globalThis.MathMLElement.prototype.onvolumechange", | |
"globalThis.MathMLElement.prototype.onwaiting", | |
"globalThis.MathMLElement.prototype.onwebkitanimationend", | |
"globalThis.MathMLElement.prototype.onwebkitanimationiteration", | |
"globalThis.MathMLElement.prototype.onwebkitanimationstart", | |
"globalThis.MathMLElement.prototype.onwebkittransitionend", | |
"globalThis.MathMLElement.prototype.onwheel", | |
"globalThis.MathMLElement.prototype.onauxclick", | |
"globalThis.MathMLElement.prototype.ongotpointercapture", | |
"globalThis.MathMLElement.prototype.onlostpointercapture", | |
"globalThis.MathMLElement.prototype.onpointerdown", | |
"globalThis.MathMLElement.prototype.onpointermove", | |
"globalThis.MathMLElement.prototype.onpointerrawupdate", | |
"globalThis.MathMLElement.prototype.onpointerup", | |
"globalThis.MathMLElement.prototype.onpointercancel", | |
"globalThis.MathMLElement.prototype.onpointerover", | |
"globalThis.MathMLElement.prototype.onpointerout", | |
"globalThis.MathMLElement.prototype.onpointerenter", | |
"globalThis.MathMLElement.prototype.onpointerleave", | |
"globalThis.MathMLElement.prototype.onselectstart", | |
"globalThis.MathMLElement.prototype.onselectionchange", | |
"globalThis.MathMLElement.prototype.onanimationend", | |
"globalThis.MathMLElement.prototype.onanimationiteration", | |
"globalThis.MathMLElement.prototype.onanimationstart", | |
"globalThis.MathMLElement.prototype.ontransitionrun", | |
"globalThis.MathMLElement.prototype.ontransitionstart", | |
"globalThis.MathMLElement.prototype.ontransitionend", | |
"globalThis.MathMLElement.prototype.ontransitioncancel", | |
"globalThis.MathMLElement.prototype.oncopy", | |
"globalThis.MathMLElement.prototype.oncut", | |
"globalThis.MathMLElement.prototype.onpaste", | |
"globalThis.MathMLElement.prototype.dataset", | |
"globalThis.MathMLElement.prototype.nonce", | |
"globalThis.MathMLElement.prototype.autofocus", | |
"globalThis.MathMLElement.prototype.tabIndex", | |
"globalThis.MathMLElement.prototype.style", | |
"globalThis.MathMLElement.prototype.attributeStyleMap", | |
"globalThis.MathMLElement.prototype.blur", | |
"globalThis.MathMLElement.prototype.focus", | |
"globalThis.MathMLElement.prototype.oncontentvisibilityautostatechange", | |
"globalThis.MathMLElement.prototype.onoverscroll", | |
"globalThis.MathMLElement.prototype.onscrollend", | |
"globalThis.MathMLElement.prototype.onbeforematch", | |
"globalThis.MathMLElement.prototype.focusgroup", | |
"globalThis.MathMLElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Location", | |
"globalThis.Location.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.LayoutShiftAttribution", | |
"globalThis.LayoutShiftAttribution.prototype.node", | |
"globalThis.LayoutShiftAttribution.prototype.previousRect", | |
"globalThis.LayoutShiftAttribution.prototype.currentRect", | |
"globalThis.LayoutShiftAttribution.prototype.toJSON", | |
"globalThis.LayoutShiftAttribution.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.LayoutShift", | |
"globalThis.LayoutShift.prototype.value", | |
"globalThis.LayoutShift.prototype.hadRecentInput", | |
"globalThis.LayoutShift.prototype.lastInputTime", | |
"globalThis.LayoutShift.prototype.sources", | |
"globalThis.LayoutShift.prototype.toJSON", | |
"globalThis.LayoutShift.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.LargestContentfulPaint", | |
"globalThis.LargestContentfulPaint.prototype.renderTime", | |
"globalThis.LargestContentfulPaint.prototype.loadTime", | |
"globalThis.LargestContentfulPaint.prototype.size", | |
"globalThis.LargestContentfulPaint.prototype.id", | |
"globalThis.LargestContentfulPaint.prototype.url", | |
"globalThis.LargestContentfulPaint.prototype.element", | |
"globalThis.LargestContentfulPaint.prototype.toJSON", | |
"globalThis.LargestContentfulPaint.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.KeyframeEffect", | |
"globalThis.KeyframeEffect.prototype.target", | |
"globalThis.KeyframeEffect.prototype.pseudoElement", | |
"globalThis.KeyframeEffect.prototype.composite", | |
"globalThis.KeyframeEffect.prototype.getKeyframes", | |
"globalThis.KeyframeEffect.prototype.setKeyframes", | |
"globalThis.KeyframeEffect.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.KeyboardEvent", | |
"globalThis.KeyboardEvent.prototype.key", | |
"globalThis.KeyboardEvent.prototype.code", | |
"globalThis.KeyboardEvent.prototype.location", | |
"globalThis.KeyboardEvent.prototype.ctrlKey", | |
"globalThis.KeyboardEvent.prototype.shiftKey", | |
"globalThis.KeyboardEvent.prototype.altKey", | |
"globalThis.KeyboardEvent.prototype.metaKey", | |
"globalThis.KeyboardEvent.prototype.repeat", | |
"globalThis.KeyboardEvent.prototype.isComposing", | |
"globalThis.KeyboardEvent.prototype.charCode", | |
"globalThis.KeyboardEvent.prototype.keyCode", | |
"globalThis.KeyboardEvent.prototype.getModifierState", | |
"globalThis.KeyboardEvent.prototype.initKeyboardEvent", | |
"globalThis.KeyboardEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IntersectionObserverEntry", | |
"globalThis.IntersectionObserverEntry.prototype.time", | |
"globalThis.IntersectionObserverEntry.prototype.rootBounds", | |
"globalThis.IntersectionObserverEntry.prototype.boundingClientRect", | |
"globalThis.IntersectionObserverEntry.prototype.intersectionRect", | |
"globalThis.IntersectionObserverEntry.prototype.isIntersecting", | |
"globalThis.IntersectionObserverEntry.prototype.isVisible", | |
"globalThis.IntersectionObserverEntry.prototype.intersectionRatio", | |
"globalThis.IntersectionObserverEntry.prototype.target", | |
"globalThis.IntersectionObserverEntry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IntersectionObserver", | |
"globalThis.IntersectionObserver.prototype.root", | |
"globalThis.IntersectionObserver.prototype.rootMargin", | |
"globalThis.IntersectionObserver.prototype.thresholds", | |
"globalThis.IntersectionObserver.prototype.delay", | |
"globalThis.IntersectionObserver.prototype.trackVisibility", | |
"globalThis.IntersectionObserver.prototype.disconnect", | |
"globalThis.IntersectionObserver.prototype.observe", | |
"globalThis.IntersectionObserver.prototype.takeRecords", | |
"globalThis.IntersectionObserver.prototype.unobserve", | |
"globalThis.IntersectionObserver.prototype.scrollMargin", | |
"globalThis.IntersectionObserver.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.InputEvent", | |
"globalThis.InputEvent.prototype.data", | |
"globalThis.InputEvent.prototype.isComposing", | |
"globalThis.InputEvent.prototype.inputType", | |
"globalThis.InputEvent.prototype.dataTransfer", | |
"globalThis.InputEvent.prototype.getTargetRanges", | |
"globalThis.InputEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.InputDeviceInfo", | |
"globalThis.InputDeviceInfo.prototype.getCapabilities", | |
"globalThis.InputDeviceInfo.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.InputDeviceCapabilities", | |
"globalThis.InputDeviceCapabilities.prototype.firesTouchEvents", | |
"globalThis.InputDeviceCapabilities.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ImageTrackList", | |
"globalThis.ImageTrackList.prototype.length", | |
"globalThis.ImageTrackList.prototype.selectedIndex", | |
"globalThis.ImageTrackList.prototype.selectedTrack", | |
"globalThis.ImageTrackList.prototype.ready", | |
"globalThis.ImageTrackList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ImageTrackList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.ImageTrack", | |
"globalThis.ImageTrack.prototype.frameCount", | |
"globalThis.ImageTrack.prototype.animated", | |
"globalThis.ImageTrack.prototype.repetitionCount", | |
"globalThis.ImageTrack.prototype.selected", | |
"globalThis.ImageTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ImageData", | |
"globalThis.ImageData.prototype.width", | |
"globalThis.ImageData.prototype.height", | |
"globalThis.ImageData.prototype.colorSpace", | |
"globalThis.ImageData.prototype.data", | |
"globalThis.ImageData.prototype.storageFormat", | |
"globalThis.ImageData.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ImageCapture", | |
"globalThis.ImageCapture.prototype.track", | |
"globalThis.ImageCapture.prototype.getPhotoCapabilities", | |
"globalThis.ImageCapture.prototype.getPhotoSettings", | |
"globalThis.ImageCapture.prototype.grabFrame", | |
"globalThis.ImageCapture.prototype.takePhoto", | |
"globalThis.ImageCapture.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ImageBitmapRenderingContext", | |
"globalThis.ImageBitmapRenderingContext.prototype.canvas", | |
"globalThis.ImageBitmapRenderingContext.prototype.transferFromImageBitmap", | |
"globalThis.ImageBitmapRenderingContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ImageBitmap", | |
"globalThis.ImageBitmap.prototype.width", | |
"globalThis.ImageBitmap.prototype.height", | |
"globalThis.ImageBitmap.prototype.close", | |
"globalThis.ImageBitmap.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IdleDeadline", | |
"globalThis.IdleDeadline.prototype.didTimeout", | |
"globalThis.IdleDeadline.prototype.timeRemaining", | |
"globalThis.IdleDeadline.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IIRFilterNode", | |
"globalThis.IIRFilterNode.prototype.getFrequencyResponse", | |
"globalThis.IIRFilterNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBVersionChangeEvent", | |
"globalThis.IDBVersionChangeEvent.prototype.oldVersion", | |
"globalThis.IDBVersionChangeEvent.prototype.newVersion", | |
"globalThis.IDBVersionChangeEvent.prototype.dataLoss", | |
"globalThis.IDBVersionChangeEvent.prototype.dataLossMessage", | |
"globalThis.IDBVersionChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBTransaction", | |
"globalThis.IDBTransaction.prototype.objectStoreNames", | |
"globalThis.IDBTransaction.prototype.mode", | |
"globalThis.IDBTransaction.prototype.durability", | |
"globalThis.IDBTransaction.prototype.db", | |
"globalThis.IDBTransaction.prototype.error", | |
"globalThis.IDBTransaction.prototype.onabort", | |
"globalThis.IDBTransaction.prototype.oncomplete", | |
"globalThis.IDBTransaction.prototype.onerror", | |
"globalThis.IDBTransaction.prototype.abort", | |
"globalThis.IDBTransaction.prototype.commit", | |
"globalThis.IDBTransaction.prototype.objectStore", | |
"globalThis.IDBTransaction.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBRequest", | |
"globalThis.IDBRequest.prototype.result", | |
"globalThis.IDBRequest.prototype.error", | |
"globalThis.IDBRequest.prototype.source", | |
"globalThis.IDBRequest.prototype.transaction", | |
"globalThis.IDBRequest.prototype.readyState", | |
"globalThis.IDBRequest.prototype.onsuccess", | |
"globalThis.IDBRequest.prototype.onerror", | |
"globalThis.IDBRequest.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBOpenDBRequest", | |
"globalThis.IDBOpenDBRequest.prototype.onblocked", | |
"globalThis.IDBOpenDBRequest.prototype.onupgradeneeded", | |
"globalThis.IDBOpenDBRequest.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBObjectStore", | |
"globalThis.IDBObjectStore.prototype.name", | |
"globalThis.IDBObjectStore.prototype.keyPath", | |
"globalThis.IDBObjectStore.prototype.indexNames", | |
"globalThis.IDBObjectStore.prototype.transaction", | |
"globalThis.IDBObjectStore.prototype.autoIncrement", | |
"globalThis.IDBObjectStore.prototype.add", | |
"globalThis.IDBObjectStore.prototype.clear", | |
"globalThis.IDBObjectStore.prototype.count", | |
"globalThis.IDBObjectStore.prototype.createIndex", | |
"globalThis.IDBObjectStore.prototype.delete", | |
"globalThis.IDBObjectStore.prototype.deleteIndex", | |
"globalThis.IDBObjectStore.prototype.get", | |
"globalThis.IDBObjectStore.prototype.getAll", | |
"globalThis.IDBObjectStore.prototype.getAllKeys", | |
"globalThis.IDBObjectStore.prototype.getKey", | |
"globalThis.IDBObjectStore.prototype.index", | |
"globalThis.IDBObjectStore.prototype.openCursor", | |
"globalThis.IDBObjectStore.prototype.openKeyCursor", | |
"globalThis.IDBObjectStore.prototype.put", | |
"globalThis.IDBObjectStore.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBKeyRange", | |
"globalThis.IDBKeyRange.prototype.lower", | |
"globalThis.IDBKeyRange.prototype.upper", | |
"globalThis.IDBKeyRange.prototype.lowerOpen", | |
"globalThis.IDBKeyRange.prototype.upperOpen", | |
"globalThis.IDBKeyRange.prototype.includes", | |
"globalThis.IDBKeyRange.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBKeyRange.bound", | |
"globalThis.IDBKeyRange.lowerBound", | |
"globalThis.IDBKeyRange.only", | |
"globalThis.IDBKeyRange.upperBound", | |
"globalThis.IDBIndex", | |
"globalThis.IDBIndex.prototype.name", | |
"globalThis.IDBIndex.prototype.objectStore", | |
"globalThis.IDBIndex.prototype.keyPath", | |
"globalThis.IDBIndex.prototype.multiEntry", | |
"globalThis.IDBIndex.prototype.unique", | |
"globalThis.IDBIndex.prototype.count", | |
"globalThis.IDBIndex.prototype.get", | |
"globalThis.IDBIndex.prototype.getAll", | |
"globalThis.IDBIndex.prototype.getAllKeys", | |
"globalThis.IDBIndex.prototype.getKey", | |
"globalThis.IDBIndex.prototype.openCursor", | |
"globalThis.IDBIndex.prototype.openKeyCursor", | |
"globalThis.IDBIndex.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBFactory", | |
"globalThis.IDBFactory.prototype.cmp", | |
"globalThis.IDBFactory.prototype.databases", | |
"globalThis.IDBFactory.prototype.deleteDatabase", | |
"globalThis.IDBFactory.prototype.open", | |
"globalThis.IDBFactory.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBDatabase", | |
"globalThis.IDBDatabase.prototype.name", | |
"globalThis.IDBDatabase.prototype.version", | |
"globalThis.IDBDatabase.prototype.objectStoreNames", | |
"globalThis.IDBDatabase.prototype.onabort", | |
"globalThis.IDBDatabase.prototype.onclose", | |
"globalThis.IDBDatabase.prototype.onerror", | |
"globalThis.IDBDatabase.prototype.onversionchange", | |
"globalThis.IDBDatabase.prototype.close", | |
"globalThis.IDBDatabase.prototype.createObjectStore", | |
"globalThis.IDBDatabase.prototype.deleteObjectStore", | |
"globalThis.IDBDatabase.prototype.transaction", | |
"globalThis.IDBDatabase.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBCursorWithValue", | |
"globalThis.IDBCursorWithValue.prototype.value", | |
"globalThis.IDBCursorWithValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.IDBCursor", | |
"globalThis.IDBCursor.prototype.source", | |
"globalThis.IDBCursor.prototype.direction", | |
"globalThis.IDBCursor.prototype.key", | |
"globalThis.IDBCursor.prototype.primaryKey", | |
"globalThis.IDBCursor.prototype.request", | |
"globalThis.IDBCursor.prototype.advance", | |
"globalThis.IDBCursor.prototype.continue", | |
"globalThis.IDBCursor.prototype.continuePrimaryKey", | |
"globalThis.IDBCursor.prototype.delete", | |
"globalThis.IDBCursor.prototype.update", | |
"globalThis.IDBCursor.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.History", | |
"globalThis.History.prototype.length", | |
"globalThis.History.prototype.scrollRestoration", | |
"globalThis.History.prototype.state", | |
"globalThis.History.prototype.back", | |
"globalThis.History.prototype.forward", | |
"globalThis.History.prototype.go", | |
"globalThis.History.prototype.pushState", | |
"globalThis.History.prototype.replaceState", | |
"globalThis.History.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Headers", | |
"globalThis.Headers.prototype.append", | |
"globalThis.Headers.prototype.delete", | |
"globalThis.Headers.prototype.get", | |
"globalThis.Headers.prototype.getSetCookie", | |
"globalThis.Headers.prototype.has", | |
"globalThis.Headers.prototype.set", | |
"globalThis.Headers.prototype.entries", | |
"globalThis.Headers.prototype.forEach", | |
"globalThis.Headers.prototype.keys", | |
"globalThis.Headers.prototype.values", | |
"globalThis.Headers.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Headers.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HashChangeEvent", | |
"globalThis.HashChangeEvent.prototype.oldURL", | |
"globalThis.HashChangeEvent.prototype.newURL", | |
"globalThis.HashChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLVideoElement", | |
"globalThis.HTMLVideoElement.prototype.width", | |
"globalThis.HTMLVideoElement.prototype.height", | |
"globalThis.HTMLVideoElement.prototype.videoWidth", | |
"globalThis.HTMLVideoElement.prototype.videoHeight", | |
"globalThis.HTMLVideoElement.prototype.poster", | |
"globalThis.HTMLVideoElement.prototype.webkitDecodedFrameCount", | |
"globalThis.HTMLVideoElement.prototype.webkitDroppedFrameCount", | |
"globalThis.HTMLVideoElement.prototype.playsInline", | |
"globalThis.HTMLVideoElement.prototype.onenterpictureinpicture", | |
"globalThis.HTMLVideoElement.prototype.onleavepictureinpicture", | |
"globalThis.HTMLVideoElement.prototype.disablePictureInPicture", | |
"globalThis.HTMLVideoElement.prototype.cancelVideoFrameCallback", | |
"globalThis.HTMLVideoElement.prototype.requestPictureInPicture", | |
"globalThis.HTMLVideoElement.prototype.requestVideoFrameCallback", | |
"globalThis.HTMLVideoElement.prototype.webkitSupportsFullscreen", | |
"globalThis.HTMLVideoElement.prototype.webkitDisplayingFullscreen", | |
"globalThis.HTMLVideoElement.prototype.getVideoPlaybackQuality", | |
"globalThis.HTMLVideoElement.prototype.webkitEnterFullScreen", | |
"globalThis.HTMLVideoElement.prototype.webkitEnterFullscreen", | |
"globalThis.HTMLVideoElement.prototype.webkitExitFullScreen", | |
"globalThis.HTMLVideoElement.prototype.webkitExitFullscreen", | |
"globalThis.HTMLVideoElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLUnknownElement", | |
"globalThis.HTMLUnknownElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLUListElement", | |
"globalThis.HTMLUListElement.prototype.compact", | |
"globalThis.HTMLUListElement.prototype.type", | |
"globalThis.HTMLUListElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTrackElement", | |
"globalThis.HTMLTrackElement.prototype.kind", | |
"globalThis.HTMLTrackElement.prototype.src", | |
"globalThis.HTMLTrackElement.prototype.srclang", | |
"globalThis.HTMLTrackElement.prototype.label", | |
"globalThis.HTMLTrackElement.prototype.default", | |
"globalThis.HTMLTrackElement.prototype.readyState", | |
"globalThis.HTMLTrackElement.prototype.track", | |
"globalThis.HTMLTrackElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTitleElement", | |
"globalThis.HTMLTitleElement.prototype.text", | |
"globalThis.HTMLTitleElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTimeElement", | |
"globalThis.HTMLTimeElement.prototype.dateTime", | |
"globalThis.HTMLTimeElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTextAreaElement", | |
"globalThis.HTMLTextAreaElement.prototype.autocomplete", | |
"globalThis.HTMLTextAreaElement.prototype.cols", | |
"globalThis.HTMLTextAreaElement.prototype.dirName", | |
"globalThis.HTMLTextAreaElement.prototype.disabled", | |
"globalThis.HTMLTextAreaElement.prototype.form", | |
"globalThis.HTMLTextAreaElement.prototype.maxLength", | |
"globalThis.HTMLTextAreaElement.prototype.minLength", | |
"globalThis.HTMLTextAreaElement.prototype.name", | |
"globalThis.HTMLTextAreaElement.prototype.placeholder", | |
"globalThis.HTMLTextAreaElement.prototype.readOnly", | |
"globalThis.HTMLTextAreaElement.prototype.required", | |
"globalThis.HTMLTextAreaElement.prototype.rows", | |
"globalThis.HTMLTextAreaElement.prototype.wrap", | |
"globalThis.HTMLTextAreaElement.prototype.type", | |
"globalThis.HTMLTextAreaElement.prototype.defaultValue", | |
"globalThis.HTMLTextAreaElement.prototype.value", | |
"globalThis.HTMLTextAreaElement.prototype.textLength", | |
"globalThis.HTMLTextAreaElement.prototype.willValidate", | |
"globalThis.HTMLTextAreaElement.prototype.validity", | |
"globalThis.HTMLTextAreaElement.prototype.validationMessage", | |
"globalThis.HTMLTextAreaElement.prototype.labels", | |
"globalThis.HTMLTextAreaElement.prototype.selectionStart", | |
"globalThis.HTMLTextAreaElement.prototype.selectionEnd", | |
"globalThis.HTMLTextAreaElement.prototype.selectionDirection", | |
"globalThis.HTMLTextAreaElement.prototype.checkValidity", | |
"globalThis.HTMLTextAreaElement.prototype.reportValidity", | |
"globalThis.HTMLTextAreaElement.prototype.select", | |
"globalThis.HTMLTextAreaElement.prototype.setCustomValidity", | |
"globalThis.HTMLTextAreaElement.prototype.setRangeText", | |
"globalThis.HTMLTextAreaElement.prototype.setSelectionRange", | |
"globalThis.HTMLTextAreaElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTemplateElement", | |
"globalThis.HTMLTemplateElement.prototype.content", | |
"globalThis.HTMLTemplateElement.prototype.shadowRoot", | |
"globalThis.HTMLTemplateElement.prototype.shadowRootMode", | |
"globalThis.HTMLTemplateElement.prototype.parseparts", | |
"globalThis.HTMLTemplateElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTableSectionElement", | |
"globalThis.HTMLTableSectionElement.prototype.rows", | |
"globalThis.HTMLTableSectionElement.prototype.align", | |
"globalThis.HTMLTableSectionElement.prototype.ch", | |
"globalThis.HTMLTableSectionElement.prototype.chOff", | |
"globalThis.HTMLTableSectionElement.prototype.vAlign", | |
"globalThis.HTMLTableSectionElement.prototype.deleteRow", | |
"globalThis.HTMLTableSectionElement.prototype.insertRow", | |
"globalThis.HTMLTableSectionElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTableRowElement", | |
"globalThis.HTMLTableRowElement.prototype.rowIndex", | |
"globalThis.HTMLTableRowElement.prototype.sectionRowIndex", | |
"globalThis.HTMLTableRowElement.prototype.cells", | |
"globalThis.HTMLTableRowElement.prototype.align", | |
"globalThis.HTMLTableRowElement.prototype.ch", | |
"globalThis.HTMLTableRowElement.prototype.chOff", | |
"globalThis.HTMLTableRowElement.prototype.vAlign", | |
"globalThis.HTMLTableRowElement.prototype.bgColor", | |
"globalThis.HTMLTableRowElement.prototype.deleteCell", | |
"globalThis.HTMLTableRowElement.prototype.insertCell", | |
"globalThis.HTMLTableRowElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTableElement", | |
"globalThis.HTMLTableElement.prototype.caption", | |
"globalThis.HTMLTableElement.prototype.tHead", | |
"globalThis.HTMLTableElement.prototype.tFoot", | |
"globalThis.HTMLTableElement.prototype.tBodies", | |
"globalThis.HTMLTableElement.prototype.rows", | |
"globalThis.HTMLTableElement.prototype.align", | |
"globalThis.HTMLTableElement.prototype.border", | |
"globalThis.HTMLTableElement.prototype.frame", | |
"globalThis.HTMLTableElement.prototype.rules", | |
"globalThis.HTMLTableElement.prototype.summary", | |
"globalThis.HTMLTableElement.prototype.width", | |
"globalThis.HTMLTableElement.prototype.bgColor", | |
"globalThis.HTMLTableElement.prototype.cellPadding", | |
"globalThis.HTMLTableElement.prototype.cellSpacing", | |
"globalThis.HTMLTableElement.prototype.createCaption", | |
"globalThis.HTMLTableElement.prototype.createTBody", | |
"globalThis.HTMLTableElement.prototype.createTFoot", | |
"globalThis.HTMLTableElement.prototype.createTHead", | |
"globalThis.HTMLTableElement.prototype.deleteCaption", | |
"globalThis.HTMLTableElement.prototype.deleteRow", | |
"globalThis.HTMLTableElement.prototype.deleteTFoot", | |
"globalThis.HTMLTableElement.prototype.deleteTHead", | |
"globalThis.HTMLTableElement.prototype.insertRow", | |
"globalThis.HTMLTableElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTableColElement", | |
"globalThis.HTMLTableColElement.prototype.span", | |
"globalThis.HTMLTableColElement.prototype.align", | |
"globalThis.HTMLTableColElement.prototype.ch", | |
"globalThis.HTMLTableColElement.prototype.chOff", | |
"globalThis.HTMLTableColElement.prototype.vAlign", | |
"globalThis.HTMLTableColElement.prototype.width", | |
"globalThis.HTMLTableColElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTableCellElement", | |
"globalThis.HTMLTableCellElement.prototype.colSpan", | |
"globalThis.HTMLTableCellElement.prototype.rowSpan", | |
"globalThis.HTMLTableCellElement.prototype.headers", | |
"globalThis.HTMLTableCellElement.prototype.cellIndex", | |
"globalThis.HTMLTableCellElement.prototype.align", | |
"globalThis.HTMLTableCellElement.prototype.axis", | |
"globalThis.HTMLTableCellElement.prototype.height", | |
"globalThis.HTMLTableCellElement.prototype.width", | |
"globalThis.HTMLTableCellElement.prototype.ch", | |
"globalThis.HTMLTableCellElement.prototype.chOff", | |
"globalThis.HTMLTableCellElement.prototype.noWrap", | |
"globalThis.HTMLTableCellElement.prototype.vAlign", | |
"globalThis.HTMLTableCellElement.prototype.bgColor", | |
"globalThis.HTMLTableCellElement.prototype.abbr", | |
"globalThis.HTMLTableCellElement.prototype.scope", | |
"globalThis.HTMLTableCellElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLTableCaptionElement", | |
"globalThis.HTMLTableCaptionElement.prototype.align", | |
"globalThis.HTMLTableCaptionElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLStyleElement", | |
"globalThis.HTMLStyleElement.prototype.disabled", | |
"globalThis.HTMLStyleElement.prototype.media", | |
"globalThis.HTMLStyleElement.prototype.type", | |
"globalThis.HTMLStyleElement.prototype.sheet", | |
"globalThis.HTMLStyleElement.prototype.blocking", | |
"globalThis.HTMLStyleElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLSpanElement", | |
"globalThis.HTMLSpanElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLSourceElement", | |
"globalThis.HTMLSourceElement.prototype.src", | |
"globalThis.HTMLSourceElement.prototype.type", | |
"globalThis.HTMLSourceElement.prototype.srcset", | |
"globalThis.HTMLSourceElement.prototype.sizes", | |
"globalThis.HTMLSourceElement.prototype.media", | |
"globalThis.HTMLSourceElement.prototype.width", | |
"globalThis.HTMLSourceElement.prototype.height", | |
"globalThis.HTMLSourceElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLSlotElement", | |
"globalThis.HTMLSlotElement.prototype.name", | |
"globalThis.HTMLSlotElement.prototype.assign", | |
"globalThis.HTMLSlotElement.prototype.assignedElements", | |
"globalThis.HTMLSlotElement.prototype.assignedNodes", | |
"globalThis.HTMLSlotElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLSelectElement", | |
"globalThis.HTMLSelectElement.prototype.autocomplete", | |
"globalThis.HTMLSelectElement.prototype.disabled", | |
"globalThis.HTMLSelectElement.prototype.form", | |
"globalThis.HTMLSelectElement.prototype.multiple", | |
"globalThis.HTMLSelectElement.prototype.name", | |
"globalThis.HTMLSelectElement.prototype.required", | |
"globalThis.HTMLSelectElement.prototype.size", | |
"globalThis.HTMLSelectElement.prototype.type", | |
"globalThis.HTMLSelectElement.prototype.options", | |
"globalThis.HTMLSelectElement.prototype.length", | |
"globalThis.HTMLSelectElement.prototype.selectedOptions", | |
"globalThis.HTMLSelectElement.prototype.selectedIndex", | |
"globalThis.HTMLSelectElement.prototype.value", | |
"globalThis.HTMLSelectElement.prototype.willValidate", | |
"globalThis.HTMLSelectElement.prototype.validity", | |
"globalThis.HTMLSelectElement.prototype.validationMessage", | |
"globalThis.HTMLSelectElement.prototype.labels", | |
"globalThis.HTMLSelectElement.prototype.add", | |
"globalThis.HTMLSelectElement.prototype.checkValidity", | |
"globalThis.HTMLSelectElement.prototype.item", | |
"globalThis.HTMLSelectElement.prototype.namedItem", | |
"globalThis.HTMLSelectElement.prototype.remove", | |
"globalThis.HTMLSelectElement.prototype.reportValidity", | |
"globalThis.HTMLSelectElement.prototype.setCustomValidity", | |
"globalThis.HTMLSelectElement.prototype.showPicker", | |
"globalThis.HTMLSelectElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLSelectElement.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HTMLScriptElement", | |
"globalThis.HTMLScriptElement.prototype.src", | |
"globalThis.HTMLScriptElement.prototype.type", | |
"globalThis.HTMLScriptElement.prototype.noModule", | |
"globalThis.HTMLScriptElement.prototype.charset", | |
"globalThis.HTMLScriptElement.prototype.async", | |
"globalThis.HTMLScriptElement.prototype.defer", | |
"globalThis.HTMLScriptElement.prototype.crossOrigin", | |
"globalThis.HTMLScriptElement.prototype.text", | |
"globalThis.HTMLScriptElement.prototype.referrerPolicy", | |
"globalThis.HTMLScriptElement.prototype.fetchPriority", | |
"globalThis.HTMLScriptElement.prototype.event", | |
"globalThis.HTMLScriptElement.prototype.htmlFor", | |
"globalThis.HTMLScriptElement.prototype.integrity", | |
"globalThis.HTMLScriptElement.prototype.blocking", | |
"globalThis.HTMLScriptElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLScriptElement.supports", | |
"globalThis.HTMLQuoteElement", | |
"globalThis.HTMLQuoteElement.prototype.cite", | |
"globalThis.HTMLQuoteElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLProgressElement", | |
"globalThis.HTMLProgressElement.prototype.value", | |
"globalThis.HTMLProgressElement.prototype.max", | |
"globalThis.HTMLProgressElement.prototype.position", | |
"globalThis.HTMLProgressElement.prototype.labels", | |
"globalThis.HTMLProgressElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLPreElement", | |
"globalThis.HTMLPreElement.prototype.width", | |
"globalThis.HTMLPreElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLPictureElement", | |
"globalThis.HTMLPictureElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLParamElement", | |
"globalThis.HTMLParamElement.prototype.name", | |
"globalThis.HTMLParamElement.prototype.value", | |
"globalThis.HTMLParamElement.prototype.type", | |
"globalThis.HTMLParamElement.prototype.valueType", | |
"globalThis.HTMLParamElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLParagraphElement", | |
"globalThis.HTMLParagraphElement.prototype.align", | |
"globalThis.HTMLParagraphElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLOutputElement", | |
"globalThis.HTMLOutputElement.prototype.htmlFor", | |
"globalThis.HTMLOutputElement.prototype.form", | |
"globalThis.HTMLOutputElement.prototype.name", | |
"globalThis.HTMLOutputElement.prototype.type", | |
"globalThis.HTMLOutputElement.prototype.defaultValue", | |
"globalThis.HTMLOutputElement.prototype.value", | |
"globalThis.HTMLOutputElement.prototype.willValidate", | |
"globalThis.HTMLOutputElement.prototype.validity", | |
"globalThis.HTMLOutputElement.prototype.validationMessage", | |
"globalThis.HTMLOutputElement.prototype.labels", | |
"globalThis.HTMLOutputElement.prototype.checkValidity", | |
"globalThis.HTMLOutputElement.prototype.reportValidity", | |
"globalThis.HTMLOutputElement.prototype.setCustomValidity", | |
"globalThis.HTMLOutputElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLOptionsCollection", | |
"globalThis.HTMLOptionsCollection.prototype.length", | |
"globalThis.HTMLOptionsCollection.prototype.selectedIndex", | |
"globalThis.HTMLOptionsCollection.prototype.add", | |
"globalThis.HTMLOptionsCollection.prototype.remove", | |
"globalThis.HTMLOptionsCollection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLOptionsCollection.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HTMLOptionElement", | |
"globalThis.HTMLOptionElement.prototype.disabled", | |
"globalThis.HTMLOptionElement.prototype.form", | |
"globalThis.HTMLOptionElement.prototype.label", | |
"globalThis.HTMLOptionElement.prototype.defaultSelected", | |
"globalThis.HTMLOptionElement.prototype.selected", | |
"globalThis.HTMLOptionElement.prototype.value", | |
"globalThis.HTMLOptionElement.prototype.text", | |
"globalThis.HTMLOptionElement.prototype.index", | |
"globalThis.HTMLOptionElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLOptGroupElement", | |
"globalThis.HTMLOptGroupElement.prototype.disabled", | |
"globalThis.HTMLOptGroupElement.prototype.label", | |
"globalThis.HTMLOptGroupElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLObjectElement", | |
"globalThis.HTMLObjectElement.prototype.data", | |
"globalThis.HTMLObjectElement.prototype.type", | |
"globalThis.HTMLObjectElement.prototype.name", | |
"globalThis.HTMLObjectElement.prototype.useMap", | |
"globalThis.HTMLObjectElement.prototype.form", | |
"globalThis.HTMLObjectElement.prototype.width", | |
"globalThis.HTMLObjectElement.prototype.height", | |
"globalThis.HTMLObjectElement.prototype.contentDocument", | |
"globalThis.HTMLObjectElement.prototype.contentWindow", | |
"globalThis.HTMLObjectElement.prototype.willValidate", | |
"globalThis.HTMLObjectElement.prototype.validity", | |
"globalThis.HTMLObjectElement.prototype.validationMessage", | |
"globalThis.HTMLObjectElement.prototype.align", | |
"globalThis.HTMLObjectElement.prototype.archive", | |
"globalThis.HTMLObjectElement.prototype.code", | |
"globalThis.HTMLObjectElement.prototype.declare", | |
"globalThis.HTMLObjectElement.prototype.hspace", | |
"globalThis.HTMLObjectElement.prototype.standby", | |
"globalThis.HTMLObjectElement.prototype.vspace", | |
"globalThis.HTMLObjectElement.prototype.codeBase", | |
"globalThis.HTMLObjectElement.prototype.codeType", | |
"globalThis.HTMLObjectElement.prototype.border", | |
"globalThis.HTMLObjectElement.prototype.checkValidity", | |
"globalThis.HTMLObjectElement.prototype.getSVGDocument", | |
"globalThis.HTMLObjectElement.prototype.reportValidity", | |
"globalThis.HTMLObjectElement.prototype.setCustomValidity", | |
"globalThis.HTMLObjectElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLOListElement", | |
"globalThis.HTMLOListElement.prototype.reversed", | |
"globalThis.HTMLOListElement.prototype.start", | |
"globalThis.HTMLOListElement.prototype.type", | |
"globalThis.HTMLOListElement.prototype.compact", | |
"globalThis.HTMLOListElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLModElement", | |
"globalThis.HTMLModElement.prototype.cite", | |
"globalThis.HTMLModElement.prototype.dateTime", | |
"globalThis.HTMLModElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLMeterElement", | |
"globalThis.HTMLMeterElement.prototype.value", | |
"globalThis.HTMLMeterElement.prototype.min", | |
"globalThis.HTMLMeterElement.prototype.max", | |
"globalThis.HTMLMeterElement.prototype.low", | |
"globalThis.HTMLMeterElement.prototype.high", | |
"globalThis.HTMLMeterElement.prototype.optimum", | |
"globalThis.HTMLMeterElement.prototype.labels", | |
"globalThis.HTMLMeterElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLMetaElement", | |
"globalThis.HTMLMetaElement.prototype.name", | |
"globalThis.HTMLMetaElement.prototype.httpEquiv", | |
"globalThis.HTMLMetaElement.prototype.content", | |
"globalThis.HTMLMetaElement.prototype.media", | |
"globalThis.HTMLMetaElement.prototype.scheme", | |
"globalThis.HTMLMetaElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLMenuElement", | |
"globalThis.HTMLMenuElement.prototype.compact", | |
"globalThis.HTMLMenuElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLMediaElement", | |
"globalThis.HTMLMediaElement.prototype.error", | |
"globalThis.HTMLMediaElement.prototype.src", | |
"globalThis.HTMLMediaElement.prototype.currentSrc", | |
"globalThis.HTMLMediaElement.prototype.crossOrigin", | |
"globalThis.HTMLMediaElement.prototype.networkState", | |
"globalThis.HTMLMediaElement.prototype.preload", | |
"globalThis.HTMLMediaElement.prototype.buffered", | |
"globalThis.HTMLMediaElement.prototype.readyState", | |
"globalThis.HTMLMediaElement.prototype.seeking", | |
"globalThis.HTMLMediaElement.prototype.currentTime", | |
"globalThis.HTMLMediaElement.prototype.duration", | |
"globalThis.HTMLMediaElement.prototype.paused", | |
"globalThis.HTMLMediaElement.prototype.defaultPlaybackRate", | |
"globalThis.HTMLMediaElement.prototype.playbackRate", | |
"globalThis.HTMLMediaElement.prototype.played", | |
"globalThis.HTMLMediaElement.prototype.seekable", | |
"globalThis.HTMLMediaElement.prototype.ended", | |
"globalThis.HTMLMediaElement.prototype.autoplay", | |
"globalThis.HTMLMediaElement.prototype.loop", | |
"globalThis.HTMLMediaElement.prototype.preservesPitch", | |
"globalThis.HTMLMediaElement.prototype.controls", | |
"globalThis.HTMLMediaElement.prototype.controlsList", | |
"globalThis.HTMLMediaElement.prototype.volume", | |
"globalThis.HTMLMediaElement.prototype.muted", | |
"globalThis.HTMLMediaElement.prototype.defaultMuted", | |
"globalThis.HTMLMediaElement.prototype.textTracks", | |
"globalThis.HTMLMediaElement.prototype.webkitAudioDecodedByteCount", | |
"globalThis.HTMLMediaElement.prototype.webkitVideoDecodedByteCount", | |
"globalThis.HTMLMediaElement.prototype.onencrypted", | |
"globalThis.HTMLMediaElement.prototype.onwaitingforkey", | |
"globalThis.HTMLMediaElement.prototype.srcObject", | |
"globalThis.HTMLMediaElement.prototype.addTextTrack", | |
"globalThis.HTMLMediaElement.prototype.canPlayType", | |
"globalThis.HTMLMediaElement.prototype.captureStream", | |
"globalThis.HTMLMediaElement.prototype.load", | |
"globalThis.HTMLMediaElement.prototype.pause", | |
"globalThis.HTMLMediaElement.prototype.play", | |
"globalThis.HTMLMediaElement.prototype.audioTracks", | |
"globalThis.HTMLMediaElement.prototype.videoTracks", | |
"globalThis.HTMLMediaElement.prototype.sinkId", | |
"globalThis.HTMLMediaElement.prototype.remote", | |
"globalThis.HTMLMediaElement.prototype.disableRemotePlayback", | |
"globalThis.HTMLMediaElement.prototype.setSinkId", | |
"globalThis.HTMLMediaElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLMarqueeElement", | |
"globalThis.HTMLMarqueeElement.prototype.behavior", | |
"globalThis.HTMLMarqueeElement.prototype.bgColor", | |
"globalThis.HTMLMarqueeElement.prototype.direction", | |
"globalThis.HTMLMarqueeElement.prototype.height", | |
"globalThis.HTMLMarqueeElement.prototype.hspace", | |
"globalThis.HTMLMarqueeElement.prototype.loop", | |
"globalThis.HTMLMarqueeElement.prototype.scrollAmount", | |
"globalThis.HTMLMarqueeElement.prototype.scrollDelay", | |
"globalThis.HTMLMarqueeElement.prototype.trueSpeed", | |
"globalThis.HTMLMarqueeElement.prototype.vspace", | |
"globalThis.HTMLMarqueeElement.prototype.width", | |
"globalThis.HTMLMarqueeElement.prototype.start", | |
"globalThis.HTMLMarqueeElement.prototype.stop", | |
"globalThis.HTMLMarqueeElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLMapElement", | |
"globalThis.HTMLMapElement.prototype.name", | |
"globalThis.HTMLMapElement.prototype.areas", | |
"globalThis.HTMLMapElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLLinkElement", | |
"globalThis.HTMLLinkElement.prototype.disabled", | |
"globalThis.HTMLLinkElement.prototype.href", | |
"globalThis.HTMLLinkElement.prototype.crossOrigin", | |
"globalThis.HTMLLinkElement.prototype.rel", | |
"globalThis.HTMLLinkElement.prototype.relList", | |
"globalThis.HTMLLinkElement.prototype.media", | |
"globalThis.HTMLLinkElement.prototype.hreflang", | |
"globalThis.HTMLLinkElement.prototype.type", | |
"globalThis.HTMLLinkElement.prototype.as", | |
"globalThis.HTMLLinkElement.prototype.referrerPolicy", | |
"globalThis.HTMLLinkElement.prototype.sizes", | |
"globalThis.HTMLLinkElement.prototype.fetchPriority", | |
"globalThis.HTMLLinkElement.prototype.imageSrcset", | |
"globalThis.HTMLLinkElement.prototype.imageSizes", | |
"globalThis.HTMLLinkElement.prototype.charset", | |
"globalThis.HTMLLinkElement.prototype.rev", | |
"globalThis.HTMLLinkElement.prototype.target", | |
"globalThis.HTMLLinkElement.prototype.sheet", | |
"globalThis.HTMLLinkElement.prototype.integrity", | |
"globalThis.HTMLLinkElement.prototype.blocking", | |
"globalThis.HTMLLinkElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLLegendElement", | |
"globalThis.HTMLLegendElement.prototype.form", | |
"globalThis.HTMLLegendElement.prototype.align", | |
"globalThis.HTMLLegendElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLLabelElement", | |
"globalThis.HTMLLabelElement.prototype.form", | |
"globalThis.HTMLLabelElement.prototype.htmlFor", | |
"globalThis.HTMLLabelElement.prototype.control", | |
"globalThis.HTMLLabelElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLLIElement", | |
"globalThis.HTMLLIElement.prototype.value", | |
"globalThis.HTMLLIElement.prototype.type", | |
"globalThis.HTMLLIElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLInputElement", | |
"globalThis.HTMLInputElement.prototype.accept", | |
"globalThis.HTMLInputElement.prototype.alt", | |
"globalThis.HTMLInputElement.prototype.autocomplete", | |
"globalThis.HTMLInputElement.prototype.defaultChecked", | |
"globalThis.HTMLInputElement.prototype.checked", | |
"globalThis.HTMLInputElement.prototype.dirName", | |
"globalThis.HTMLInputElement.prototype.disabled", | |
"globalThis.HTMLInputElement.prototype.form", | |
"globalThis.HTMLInputElement.prototype.files", | |
"globalThis.HTMLInputElement.prototype.formAction", | |
"globalThis.HTMLInputElement.prototype.formEnctype", | |
"globalThis.HTMLInputElement.prototype.formMethod", | |
"globalThis.HTMLInputElement.prototype.formNoValidate", | |
"globalThis.HTMLInputElement.prototype.formTarget", | |
"globalThis.HTMLInputElement.prototype.height", | |
"globalThis.HTMLInputElement.prototype.indeterminate", | |
"globalThis.HTMLInputElement.prototype.list", | |
"globalThis.HTMLInputElement.prototype.max", | |
"globalThis.HTMLInputElement.prototype.maxLength", | |
"globalThis.HTMLInputElement.prototype.min", | |
"globalThis.HTMLInputElement.prototype.minLength", | |
"globalThis.HTMLInputElement.prototype.multiple", | |
"globalThis.HTMLInputElement.prototype.name", | |
"globalThis.HTMLInputElement.prototype.pattern", | |
"globalThis.HTMLInputElement.prototype.placeholder", | |
"globalThis.HTMLInputElement.prototype.readOnly", | |
"globalThis.HTMLInputElement.prototype.required", | |
"globalThis.HTMLInputElement.prototype.size", | |
"globalThis.HTMLInputElement.prototype.src", | |
"globalThis.HTMLInputElement.prototype.step", | |
"globalThis.HTMLInputElement.prototype.type", | |
"globalThis.HTMLInputElement.prototype.defaultValue", | |
"globalThis.HTMLInputElement.prototype.value", | |
"globalThis.HTMLInputElement.prototype.valueAsDate", | |
"globalThis.HTMLInputElement.prototype.valueAsNumber", | |
"globalThis.HTMLInputElement.prototype.width", | |
"globalThis.HTMLInputElement.prototype.willValidate", | |
"globalThis.HTMLInputElement.prototype.validity", | |
"globalThis.HTMLInputElement.prototype.validationMessage", | |
"globalThis.HTMLInputElement.prototype.labels", | |
"globalThis.HTMLInputElement.prototype.selectionStart", | |
"globalThis.HTMLInputElement.prototype.selectionEnd", | |
"globalThis.HTMLInputElement.prototype.selectionDirection", | |
"globalThis.HTMLInputElement.prototype.align", | |
"globalThis.HTMLInputElement.prototype.useMap", | |
"globalThis.HTMLInputElement.prototype.webkitdirectory", | |
"globalThis.HTMLInputElement.prototype.incremental", | |
"globalThis.HTMLInputElement.prototype.popoverTargetElement", | |
"globalThis.HTMLInputElement.prototype.popoverTargetAction", | |
"globalThis.HTMLInputElement.prototype.checkValidity", | |
"globalThis.HTMLInputElement.prototype.reportValidity", | |
"globalThis.HTMLInputElement.prototype.select", | |
"globalThis.HTMLInputElement.prototype.setCustomValidity", | |
"globalThis.HTMLInputElement.prototype.setRangeText", | |
"globalThis.HTMLInputElement.prototype.setSelectionRange", | |
"globalThis.HTMLInputElement.prototype.showPicker", | |
"globalThis.HTMLInputElement.prototype.stepDown", | |
"globalThis.HTMLInputElement.prototype.stepUp", | |
"globalThis.HTMLInputElement.prototype.webkitEntries", | |
"globalThis.HTMLInputElement.prototype.invokeTargetElement", | |
"globalThis.HTMLInputElement.prototype.invokeAction", | |
"globalThis.HTMLInputElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLImageElement", | |
"globalThis.HTMLImageElement.prototype.alt", | |
"globalThis.HTMLImageElement.prototype.src", | |
"globalThis.HTMLImageElement.prototype.srcset", | |
"globalThis.HTMLImageElement.prototype.sizes", | |
"globalThis.HTMLImageElement.prototype.crossOrigin", | |
"globalThis.HTMLImageElement.prototype.useMap", | |
"globalThis.HTMLImageElement.prototype.isMap", | |
"globalThis.HTMLImageElement.prototype.width", | |
"globalThis.HTMLImageElement.prototype.height", | |
"globalThis.HTMLImageElement.prototype.naturalWidth", | |
"globalThis.HTMLImageElement.prototype.naturalHeight", | |
"globalThis.HTMLImageElement.prototype.complete", | |
"globalThis.HTMLImageElement.prototype.currentSrc", | |
"globalThis.HTMLImageElement.prototype.referrerPolicy", | |
"globalThis.HTMLImageElement.prototype.decoding", | |
"globalThis.HTMLImageElement.prototype.fetchPriority", | |
"globalThis.HTMLImageElement.prototype.loading", | |
"globalThis.HTMLImageElement.prototype.name", | |
"globalThis.HTMLImageElement.prototype.lowsrc", | |
"globalThis.HTMLImageElement.prototype.align", | |
"globalThis.HTMLImageElement.prototype.hspace", | |
"globalThis.HTMLImageElement.prototype.vspace", | |
"globalThis.HTMLImageElement.prototype.longDesc", | |
"globalThis.HTMLImageElement.prototype.border", | |
"globalThis.HTMLImageElement.prototype.x", | |
"globalThis.HTMLImageElement.prototype.y", | |
"globalThis.HTMLImageElement.prototype.decode", | |
"globalThis.HTMLImageElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLIFrameElement", | |
"globalThis.HTMLIFrameElement.prototype.src", | |
"globalThis.HTMLIFrameElement.prototype.srcdoc", | |
"globalThis.HTMLIFrameElement.prototype.name", | |
"globalThis.HTMLIFrameElement.prototype.sandbox", | |
"globalThis.HTMLIFrameElement.prototype.allowFullscreen", | |
"globalThis.HTMLIFrameElement.prototype.width", | |
"globalThis.HTMLIFrameElement.prototype.height", | |
"globalThis.HTMLIFrameElement.prototype.contentDocument", | |
"globalThis.HTMLIFrameElement.prototype.contentWindow", | |
"globalThis.HTMLIFrameElement.prototype.referrerPolicy", | |
"globalThis.HTMLIFrameElement.prototype.csp", | |
"globalThis.HTMLIFrameElement.prototype.allow", | |
"globalThis.HTMLIFrameElement.prototype.featurePolicy", | |
"globalThis.HTMLIFrameElement.prototype.align", | |
"globalThis.HTMLIFrameElement.prototype.scrolling", | |
"globalThis.HTMLIFrameElement.prototype.frameBorder", | |
"globalThis.HTMLIFrameElement.prototype.longDesc", | |
"globalThis.HTMLIFrameElement.prototype.marginHeight", | |
"globalThis.HTMLIFrameElement.prototype.marginWidth", | |
"globalThis.HTMLIFrameElement.prototype.getSVGDocument", | |
"globalThis.HTMLIFrameElement.prototype.loading", | |
"globalThis.HTMLIFrameElement.prototype.credentialless", | |
"globalThis.HTMLIFrameElement.prototype.allowPaymentRequest", | |
"globalThis.HTMLIFrameElement.prototype.policy", | |
"globalThis.HTMLIFrameElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLHtmlElement", | |
"globalThis.HTMLHtmlElement.prototype.version", | |
"globalThis.HTMLHtmlElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLHeadingElement", | |
"globalThis.HTMLHeadingElement.prototype.align", | |
"globalThis.HTMLHeadingElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLHeadElement", | |
"globalThis.HTMLHeadElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLHRElement", | |
"globalThis.HTMLHRElement.prototype.align", | |
"globalThis.HTMLHRElement.prototype.color", | |
"globalThis.HTMLHRElement.prototype.noShade", | |
"globalThis.HTMLHRElement.prototype.size", | |
"globalThis.HTMLHRElement.prototype.width", | |
"globalThis.HTMLHRElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFrameSetElement", | |
"globalThis.HTMLFrameSetElement.prototype.cols", | |
"globalThis.HTMLFrameSetElement.prototype.rows", | |
"globalThis.HTMLFrameSetElement.prototype.onblur", | |
"globalThis.HTMLFrameSetElement.prototype.onerror", | |
"globalThis.HTMLFrameSetElement.prototype.onfocus", | |
"globalThis.HTMLFrameSetElement.prototype.onload", | |
"globalThis.HTMLFrameSetElement.prototype.onresize", | |
"globalThis.HTMLFrameSetElement.prototype.onscroll", | |
"globalThis.HTMLFrameSetElement.prototype.onafterprint", | |
"globalThis.HTMLFrameSetElement.prototype.onbeforeprint", | |
"globalThis.HTMLFrameSetElement.prototype.onbeforeunload", | |
"globalThis.HTMLFrameSetElement.prototype.onhashchange", | |
"globalThis.HTMLFrameSetElement.prototype.onlanguagechange", | |
"globalThis.HTMLFrameSetElement.prototype.onmessage", | |
"globalThis.HTMLFrameSetElement.prototype.onmessageerror", | |
"globalThis.HTMLFrameSetElement.prototype.onoffline", | |
"globalThis.HTMLFrameSetElement.prototype.ononline", | |
"globalThis.HTMLFrameSetElement.prototype.onpagehide", | |
"globalThis.HTMLFrameSetElement.prototype.onpageshow", | |
"globalThis.HTMLFrameSetElement.prototype.onpopstate", | |
"globalThis.HTMLFrameSetElement.prototype.onrejectionhandled", | |
"globalThis.HTMLFrameSetElement.prototype.onstorage", | |
"globalThis.HTMLFrameSetElement.prototype.onunhandledrejection", | |
"globalThis.HTMLFrameSetElement.prototype.onunload", | |
"globalThis.HTMLFrameSetElement.prototype.ontimezonechange", | |
"globalThis.HTMLFrameSetElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFrameElement", | |
"globalThis.HTMLFrameElement.prototype.name", | |
"globalThis.HTMLFrameElement.prototype.scrolling", | |
"globalThis.HTMLFrameElement.prototype.src", | |
"globalThis.HTMLFrameElement.prototype.frameBorder", | |
"globalThis.HTMLFrameElement.prototype.longDesc", | |
"globalThis.HTMLFrameElement.prototype.noResize", | |
"globalThis.HTMLFrameElement.prototype.contentDocument", | |
"globalThis.HTMLFrameElement.prototype.contentWindow", | |
"globalThis.HTMLFrameElement.prototype.marginHeight", | |
"globalThis.HTMLFrameElement.prototype.marginWidth", | |
"globalThis.HTMLFrameElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFormElement", | |
"globalThis.HTMLFormElement.prototype.acceptCharset", | |
"globalThis.HTMLFormElement.prototype.action", | |
"globalThis.HTMLFormElement.prototype.autocomplete", | |
"globalThis.HTMLFormElement.prototype.enctype", | |
"globalThis.HTMLFormElement.prototype.encoding", | |
"globalThis.HTMLFormElement.prototype.method", | |
"globalThis.HTMLFormElement.prototype.name", | |
"globalThis.HTMLFormElement.prototype.noValidate", | |
"globalThis.HTMLFormElement.prototype.target", | |
"globalThis.HTMLFormElement.prototype.elements", | |
"globalThis.HTMLFormElement.prototype.length", | |
"globalThis.HTMLFormElement.prototype.checkValidity", | |
"globalThis.HTMLFormElement.prototype.reportValidity", | |
"globalThis.HTMLFormElement.prototype.requestSubmit", | |
"globalThis.HTMLFormElement.prototype.reset", | |
"globalThis.HTMLFormElement.prototype.submit", | |
"globalThis.HTMLFormElement.prototype.rel", | |
"globalThis.HTMLFormElement.prototype.relList", | |
"globalThis.HTMLFormElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFormElement.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HTMLFormControlsCollection", | |
"globalThis.HTMLFormControlsCollection.prototype.namedItem", | |
"globalThis.HTMLFormControlsCollection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFormControlsCollection.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HTMLFontElement", | |
"globalThis.HTMLFontElement.prototype.color", | |
"globalThis.HTMLFontElement.prototype.face", | |
"globalThis.HTMLFontElement.prototype.size", | |
"globalThis.HTMLFontElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFieldSetElement", | |
"globalThis.HTMLFieldSetElement.prototype.disabled", | |
"globalThis.HTMLFieldSetElement.prototype.form", | |
"globalThis.HTMLFieldSetElement.prototype.name", | |
"globalThis.HTMLFieldSetElement.prototype.type", | |
"globalThis.HTMLFieldSetElement.prototype.elements", | |
"globalThis.HTMLFieldSetElement.prototype.willValidate", | |
"globalThis.HTMLFieldSetElement.prototype.validity", | |
"globalThis.HTMLFieldSetElement.prototype.validationMessage", | |
"globalThis.HTMLFieldSetElement.prototype.checkValidity", | |
"globalThis.HTMLFieldSetElement.prototype.reportValidity", | |
"globalThis.HTMLFieldSetElement.prototype.setCustomValidity", | |
"globalThis.HTMLFieldSetElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLEmbedElement", | |
"globalThis.HTMLEmbedElement.prototype.src", | |
"globalThis.HTMLEmbedElement.prototype.type", | |
"globalThis.HTMLEmbedElement.prototype.width", | |
"globalThis.HTMLEmbedElement.prototype.height", | |
"globalThis.HTMLEmbedElement.prototype.align", | |
"globalThis.HTMLEmbedElement.prototype.name", | |
"globalThis.HTMLEmbedElement.prototype.getSVGDocument", | |
"globalThis.HTMLEmbedElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLElement", | |
"globalThis.HTMLElement.prototype.title", | |
"globalThis.HTMLElement.prototype.lang", | |
"globalThis.HTMLElement.prototype.translate", | |
"globalThis.HTMLElement.prototype.dir", | |
"globalThis.HTMLElement.prototype.hidden", | |
"globalThis.HTMLElement.prototype.accessKey", | |
"globalThis.HTMLElement.prototype.draggable", | |
"globalThis.HTMLElement.prototype.spellcheck", | |
"globalThis.HTMLElement.prototype.autocapitalize", | |
"globalThis.HTMLElement.prototype.contentEditable", | |
"globalThis.HTMLElement.prototype.enterKeyHint", | |
"globalThis.HTMLElement.prototype.isContentEditable", | |
"globalThis.HTMLElement.prototype.inputMode", | |
"globalThis.HTMLElement.prototype.virtualKeyboardPolicy", | |
"globalThis.HTMLElement.prototype.offsetParent", | |
"globalThis.HTMLElement.prototype.offsetTop", | |
"globalThis.HTMLElement.prototype.offsetLeft", | |
"globalThis.HTMLElement.prototype.offsetWidth", | |
"globalThis.HTMLElement.prototype.offsetHeight", | |
"globalThis.HTMLElement.prototype.popover", | |
"globalThis.HTMLElement.prototype.innerText", | |
"globalThis.HTMLElement.prototype.outerText", | |
"globalThis.HTMLElement.prototype.onbeforexrselect", | |
"globalThis.HTMLElement.prototype.onabort", | |
"globalThis.HTMLElement.prototype.onbeforeinput", | |
"globalThis.HTMLElement.prototype.onbeforetoggle", | |
"globalThis.HTMLElement.prototype.onblur", | |
"globalThis.HTMLElement.prototype.oncancel", | |
"globalThis.HTMLElement.prototype.oncanplay", | |
"globalThis.HTMLElement.prototype.oncanplaythrough", | |
"globalThis.HTMLElement.prototype.onchange", | |
"globalThis.HTMLElement.prototype.onclick", | |
"globalThis.HTMLElement.prototype.onclose", | |
"globalThis.HTMLElement.prototype.oncontextlost", | |
"globalThis.HTMLElement.prototype.oncontextmenu", | |
"globalThis.HTMLElement.prototype.oncontextrestored", | |
"globalThis.HTMLElement.prototype.oncuechange", | |
"globalThis.HTMLElement.prototype.ondblclick", | |
"globalThis.HTMLElement.prototype.ondrag", | |
"globalThis.HTMLElement.prototype.ondragend", | |
"globalThis.HTMLElement.prototype.ondragenter", | |
"globalThis.HTMLElement.prototype.ondragleave", | |
"globalThis.HTMLElement.prototype.ondragover", | |
"globalThis.HTMLElement.prototype.ondragstart", | |
"globalThis.HTMLElement.prototype.ondrop", | |
"globalThis.HTMLElement.prototype.ondurationchange", | |
"globalThis.HTMLElement.prototype.onemptied", | |
"globalThis.HTMLElement.prototype.onended", | |
"globalThis.HTMLElement.prototype.onerror", | |
"globalThis.HTMLElement.prototype.onfocus", | |
"globalThis.HTMLElement.prototype.onformdata", | |
"globalThis.HTMLElement.prototype.oninput", | |
"globalThis.HTMLElement.prototype.oninvalid", | |
"globalThis.HTMLElement.prototype.onkeydown", | |
"globalThis.HTMLElement.prototype.onkeypress", | |
"globalThis.HTMLElement.prototype.onkeyup", | |
"globalThis.HTMLElement.prototype.onload", | |
"globalThis.HTMLElement.prototype.onloadeddata", | |
"globalThis.HTMLElement.prototype.onloadedmetadata", | |
"globalThis.HTMLElement.prototype.onloadstart", | |
"globalThis.HTMLElement.prototype.onmousedown", | |
"globalThis.HTMLElement.prototype.onmouseenter", | |
"globalThis.HTMLElement.prototype.onmouseleave", | |
"globalThis.HTMLElement.prototype.onmousemove", | |
"globalThis.HTMLElement.prototype.onmouseout", | |
"globalThis.HTMLElement.prototype.onmouseover", | |
"globalThis.HTMLElement.prototype.onmouseup", | |
"globalThis.HTMLElement.prototype.onmousewheel", | |
"globalThis.HTMLElement.prototype.onpause", | |
"globalThis.HTMLElement.prototype.onplay", | |
"globalThis.HTMLElement.prototype.onplaying", | |
"globalThis.HTMLElement.prototype.onprogress", | |
"globalThis.HTMLElement.prototype.onratechange", | |
"globalThis.HTMLElement.prototype.onreset", | |
"globalThis.HTMLElement.prototype.onresize", | |
"globalThis.HTMLElement.prototype.onscroll", | |
"globalThis.HTMLElement.prototype.onsecuritypolicyviolation", | |
"globalThis.HTMLElement.prototype.onseeked", | |
"globalThis.HTMLElement.prototype.onseeking", | |
"globalThis.HTMLElement.prototype.onselect", | |
"globalThis.HTMLElement.prototype.onslotchange", | |
"globalThis.HTMLElement.prototype.onstalled", | |
"globalThis.HTMLElement.prototype.onsubmit", | |
"globalThis.HTMLElement.prototype.onsuspend", | |
"globalThis.HTMLElement.prototype.ontimeupdate", | |
"globalThis.HTMLElement.prototype.ontoggle", | |
"globalThis.HTMLElement.prototype.onvolumechange", | |
"globalThis.HTMLElement.prototype.onwaiting", | |
"globalThis.HTMLElement.prototype.onwebkitanimationend", | |
"globalThis.HTMLElement.prototype.onwebkitanimationiteration", | |
"globalThis.HTMLElement.prototype.onwebkitanimationstart", | |
"globalThis.HTMLElement.prototype.onwebkittransitionend", | |
"globalThis.HTMLElement.prototype.onwheel", | |
"globalThis.HTMLElement.prototype.onauxclick", | |
"globalThis.HTMLElement.prototype.ongotpointercapture", | |
"globalThis.HTMLElement.prototype.onlostpointercapture", | |
"globalThis.HTMLElement.prototype.onpointerdown", | |
"globalThis.HTMLElement.prototype.onpointermove", | |
"globalThis.HTMLElement.prototype.onpointerrawupdate", | |
"globalThis.HTMLElement.prototype.onpointerup", | |
"globalThis.HTMLElement.prototype.onpointercancel", | |
"globalThis.HTMLElement.prototype.onpointerover", | |
"globalThis.HTMLElement.prototype.onpointerout", | |
"globalThis.HTMLElement.prototype.onpointerenter", | |
"globalThis.HTMLElement.prototype.onpointerleave", | |
"globalThis.HTMLElement.prototype.onselectstart", | |
"globalThis.HTMLElement.prototype.onselectionchange", | |
"globalThis.HTMLElement.prototype.onanimationend", | |
"globalThis.HTMLElement.prototype.onanimationiteration", | |
"globalThis.HTMLElement.prototype.onanimationstart", | |
"globalThis.HTMLElement.prototype.ontransitionrun", | |
"globalThis.HTMLElement.prototype.ontransitionstart", | |
"globalThis.HTMLElement.prototype.ontransitionend", | |
"globalThis.HTMLElement.prototype.ontransitioncancel", | |
"globalThis.HTMLElement.prototype.oncopy", | |
"globalThis.HTMLElement.prototype.oncut", | |
"globalThis.HTMLElement.prototype.onpaste", | |
"globalThis.HTMLElement.prototype.dataset", | |
"globalThis.HTMLElement.prototype.nonce", | |
"globalThis.HTMLElement.prototype.autofocus", | |
"globalThis.HTMLElement.prototype.tabIndex", | |
"globalThis.HTMLElement.prototype.style", | |
"globalThis.HTMLElement.prototype.attributeStyleMap", | |
"globalThis.HTMLElement.prototype.attachInternals", | |
"globalThis.HTMLElement.prototype.blur", | |
"globalThis.HTMLElement.prototype.click", | |
"globalThis.HTMLElement.prototype.focus", | |
"globalThis.HTMLElement.prototype.hidePopover", | |
"globalThis.HTMLElement.prototype.showPopover", | |
"globalThis.HTMLElement.prototype.togglePopover", | |
"globalThis.HTMLElement.prototype.inert", | |
"globalThis.HTMLElement.prototype.anchorElement", | |
"globalThis.HTMLElement.prototype.oncontentvisibilityautostatechange", | |
"globalThis.HTMLElement.prototype.onoverscroll", | |
"globalThis.HTMLElement.prototype.onscrollend", | |
"globalThis.HTMLElement.prototype.editContext", | |
"globalThis.HTMLElement.prototype.onbeforematch", | |
"globalThis.HTMLElement.prototype.focusgroup", | |
"globalThis.HTMLElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDocument", | |
"globalThis.HTMLDocument.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDivElement", | |
"globalThis.HTMLDivElement.prototype.align", | |
"globalThis.HTMLDivElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDirectoryElement", | |
"globalThis.HTMLDirectoryElement.prototype.compact", | |
"globalThis.HTMLDirectoryElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDialogElement", | |
"globalThis.HTMLDialogElement.prototype.open", | |
"globalThis.HTMLDialogElement.prototype.returnValue", | |
"globalThis.HTMLDialogElement.prototype.close", | |
"globalThis.HTMLDialogElement.prototype.show", | |
"globalThis.HTMLDialogElement.prototype.showModal", | |
"globalThis.HTMLDialogElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDetailsElement", | |
"globalThis.HTMLDetailsElement.prototype.open", | |
"globalThis.HTMLDetailsElement.prototype.name", | |
"globalThis.HTMLDetailsElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDataListElement", | |
"globalThis.HTMLDataListElement.prototype.options", | |
"globalThis.HTMLDataListElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDataElement", | |
"globalThis.HTMLDataElement.prototype.value", | |
"globalThis.HTMLDataElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLDListElement", | |
"globalThis.HTMLDListElement.prototype.compact", | |
"globalThis.HTMLDListElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLCollection", | |
"globalThis.HTMLCollection.prototype.length", | |
"globalThis.HTMLCollection.prototype.item", | |
"globalThis.HTMLCollection.prototype.namedItem", | |
"globalThis.HTMLCollection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLCollection.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HTMLCanvasElement", | |
"globalThis.HTMLCanvasElement.prototype.width", | |
"globalThis.HTMLCanvasElement.prototype.height", | |
"globalThis.HTMLCanvasElement.prototype.captureStream", | |
"globalThis.HTMLCanvasElement.prototype.getContext", | |
"globalThis.HTMLCanvasElement.prototype.toBlob", | |
"globalThis.HTMLCanvasElement.prototype.toDataURL", | |
"globalThis.HTMLCanvasElement.prototype.transferControlToOffscreen", | |
"globalThis.HTMLCanvasElement.prototype.configureHighDynamicRange", | |
"globalThis.HTMLCanvasElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLButtonElement", | |
"globalThis.HTMLButtonElement.prototype.disabled", | |
"globalThis.HTMLButtonElement.prototype.form", | |
"globalThis.HTMLButtonElement.prototype.formAction", | |
"globalThis.HTMLButtonElement.prototype.formEnctype", | |
"globalThis.HTMLButtonElement.prototype.formMethod", | |
"globalThis.HTMLButtonElement.prototype.formNoValidate", | |
"globalThis.HTMLButtonElement.prototype.formTarget", | |
"globalThis.HTMLButtonElement.prototype.name", | |
"globalThis.HTMLButtonElement.prototype.type", | |
"globalThis.HTMLButtonElement.prototype.value", | |
"globalThis.HTMLButtonElement.prototype.willValidate", | |
"globalThis.HTMLButtonElement.prototype.validity", | |
"globalThis.HTMLButtonElement.prototype.validationMessage", | |
"globalThis.HTMLButtonElement.prototype.labels", | |
"globalThis.HTMLButtonElement.prototype.popoverTargetElement", | |
"globalThis.HTMLButtonElement.prototype.popoverTargetAction", | |
"globalThis.HTMLButtonElement.prototype.checkValidity", | |
"globalThis.HTMLButtonElement.prototype.reportValidity", | |
"globalThis.HTMLButtonElement.prototype.setCustomValidity", | |
"globalThis.HTMLButtonElement.prototype.invokeTargetElement", | |
"globalThis.HTMLButtonElement.prototype.invokeAction", | |
"globalThis.HTMLButtonElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLBodyElement", | |
"globalThis.HTMLBodyElement.prototype.text", | |
"globalThis.HTMLBodyElement.prototype.link", | |
"globalThis.HTMLBodyElement.prototype.vLink", | |
"globalThis.HTMLBodyElement.prototype.aLink", | |
"globalThis.HTMLBodyElement.prototype.bgColor", | |
"globalThis.HTMLBodyElement.prototype.background", | |
"globalThis.HTMLBodyElement.prototype.onblur", | |
"globalThis.HTMLBodyElement.prototype.onerror", | |
"globalThis.HTMLBodyElement.prototype.onfocus", | |
"globalThis.HTMLBodyElement.prototype.onload", | |
"globalThis.HTMLBodyElement.prototype.onresize", | |
"globalThis.HTMLBodyElement.prototype.onscroll", | |
"globalThis.HTMLBodyElement.prototype.onafterprint", | |
"globalThis.HTMLBodyElement.prototype.onbeforeprint", | |
"globalThis.HTMLBodyElement.prototype.onbeforeunload", | |
"globalThis.HTMLBodyElement.prototype.onhashchange", | |
"globalThis.HTMLBodyElement.prototype.onlanguagechange", | |
"globalThis.HTMLBodyElement.prototype.onmessage", | |
"globalThis.HTMLBodyElement.prototype.onmessageerror", | |
"globalThis.HTMLBodyElement.prototype.onoffline", | |
"globalThis.HTMLBodyElement.prototype.ononline", | |
"globalThis.HTMLBodyElement.prototype.onpagehide", | |
"globalThis.HTMLBodyElement.prototype.onpageshow", | |
"globalThis.HTMLBodyElement.prototype.onpopstate", | |
"globalThis.HTMLBodyElement.prototype.onrejectionhandled", | |
"globalThis.HTMLBodyElement.prototype.onstorage", | |
"globalThis.HTMLBodyElement.prototype.onunhandledrejection", | |
"globalThis.HTMLBodyElement.prototype.onunload", | |
"globalThis.HTMLBodyElement.prototype.ontimezonechange", | |
"globalThis.HTMLBodyElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLBaseElement", | |
"globalThis.HTMLBaseElement.prototype.href", | |
"globalThis.HTMLBaseElement.prototype.target", | |
"globalThis.HTMLBaseElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLBRElement", | |
"globalThis.HTMLBRElement.prototype.clear", | |
"globalThis.HTMLBRElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLAudioElement", | |
"globalThis.HTMLAudioElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLAreaElement", | |
"globalThis.HTMLAreaElement.prototype.alt", | |
"globalThis.HTMLAreaElement.prototype.coords", | |
"globalThis.HTMLAreaElement.prototype.download", | |
"globalThis.HTMLAreaElement.prototype.shape", | |
"globalThis.HTMLAreaElement.prototype.target", | |
"globalThis.HTMLAreaElement.prototype.ping", | |
"globalThis.HTMLAreaElement.prototype.rel", | |
"globalThis.HTMLAreaElement.prototype.relList", | |
"globalThis.HTMLAreaElement.prototype.referrerPolicy", | |
"globalThis.HTMLAreaElement.prototype.noHref", | |
"globalThis.HTMLAreaElement.prototype.origin", | |
"globalThis.HTMLAreaElement.prototype.protocol", | |
"globalThis.HTMLAreaElement.prototype.username", | |
"globalThis.HTMLAreaElement.prototype.password", | |
"globalThis.HTMLAreaElement.prototype.host", | |
"globalThis.HTMLAreaElement.prototype.hostname", | |
"globalThis.HTMLAreaElement.prototype.port", | |
"globalThis.HTMLAreaElement.prototype.pathname", | |
"globalThis.HTMLAreaElement.prototype.search", | |
"globalThis.HTMLAreaElement.prototype.hash", | |
"globalThis.HTMLAreaElement.prototype.href", | |
"globalThis.HTMLAreaElement.prototype.toString", | |
"globalThis.HTMLAreaElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLAnchorElement", | |
"globalThis.HTMLAnchorElement.prototype.target", | |
"globalThis.HTMLAnchorElement.prototype.download", | |
"globalThis.HTMLAnchorElement.prototype.ping", | |
"globalThis.HTMLAnchorElement.prototype.rel", | |
"globalThis.HTMLAnchorElement.prototype.relList", | |
"globalThis.HTMLAnchorElement.prototype.hreflang", | |
"globalThis.HTMLAnchorElement.prototype.type", | |
"globalThis.HTMLAnchorElement.prototype.referrerPolicy", | |
"globalThis.HTMLAnchorElement.prototype.text", | |
"globalThis.HTMLAnchorElement.prototype.coords", | |
"globalThis.HTMLAnchorElement.prototype.charset", | |
"globalThis.HTMLAnchorElement.prototype.name", | |
"globalThis.HTMLAnchorElement.prototype.rev", | |
"globalThis.HTMLAnchorElement.prototype.shape", | |
"globalThis.HTMLAnchorElement.prototype.origin", | |
"globalThis.HTMLAnchorElement.prototype.protocol", | |
"globalThis.HTMLAnchorElement.prototype.username", | |
"globalThis.HTMLAnchorElement.prototype.password", | |
"globalThis.HTMLAnchorElement.prototype.host", | |
"globalThis.HTMLAnchorElement.prototype.hostname", | |
"globalThis.HTMLAnchorElement.prototype.port", | |
"globalThis.HTMLAnchorElement.prototype.pathname", | |
"globalThis.HTMLAnchorElement.prototype.search", | |
"globalThis.HTMLAnchorElement.prototype.hash", | |
"globalThis.HTMLAnchorElement.prototype.href", | |
"globalThis.HTMLAnchorElement.prototype.toString", | |
"globalThis.HTMLAnchorElement.prototype.hrefTranslate", | |
"globalThis.HTMLAnchorElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLAllCollection", | |
"globalThis.HTMLAllCollection.prototype.length", | |
"globalThis.HTMLAllCollection.prototype.item", | |
"globalThis.HTMLAllCollection.prototype.namedItem", | |
"globalThis.HTMLAllCollection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLAllCollection.prototype.Symbol(Symbol.iterator)", | |
"globalThis.GeolocationPositionError", | |
"globalThis.GeolocationPositionError.prototype.code", | |
"globalThis.GeolocationPositionError.prototype.message", | |
"globalThis.GeolocationPositionError.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GeolocationPosition", | |
"globalThis.GeolocationPosition.prototype.coords", | |
"globalThis.GeolocationPosition.prototype.timestamp", | |
"globalThis.GeolocationPosition.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GeolocationCoordinates", | |
"globalThis.GeolocationCoordinates.prototype.latitude", | |
"globalThis.GeolocationCoordinates.prototype.longitude", | |
"globalThis.GeolocationCoordinates.prototype.altitude", | |
"globalThis.GeolocationCoordinates.prototype.accuracy", | |
"globalThis.GeolocationCoordinates.prototype.altitudeAccuracy", | |
"globalThis.GeolocationCoordinates.prototype.heading", | |
"globalThis.GeolocationCoordinates.prototype.speed", | |
"globalThis.GeolocationCoordinates.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Geolocation", | |
"globalThis.Geolocation.prototype.clearWatch", | |
"globalThis.Geolocation.prototype.getCurrentPosition", | |
"globalThis.Geolocation.prototype.watchPosition", | |
"globalThis.Geolocation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GamepadHapticActuator", | |
"globalThis.GamepadHapticActuator.prototype.type", | |
"globalThis.GamepadHapticActuator.prototype.playEffect", | |
"globalThis.GamepadHapticActuator.prototype.reset", | |
"globalThis.GamepadHapticActuator.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GamepadEvent", | |
"globalThis.GamepadEvent.prototype.gamepad", | |
"globalThis.GamepadEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GamepadButton", | |
"globalThis.GamepadButton.prototype.pressed", | |
"globalThis.GamepadButton.prototype.touched", | |
"globalThis.GamepadButton.prototype.value", | |
"globalThis.GamepadButton.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Gamepad", | |
"globalThis.Gamepad.prototype.id", | |
"globalThis.Gamepad.prototype.index", | |
"globalThis.Gamepad.prototype.connected", | |
"globalThis.Gamepad.prototype.timestamp", | |
"globalThis.Gamepad.prototype.mapping", | |
"globalThis.Gamepad.prototype.axes", | |
"globalThis.Gamepad.prototype.buttons", | |
"globalThis.Gamepad.prototype.vibrationActuator", | |
"globalThis.Gamepad.prototype.touchEvents", | |
"globalThis.Gamepad.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GainNode", | |
"globalThis.GainNode.prototype.gain", | |
"globalThis.GainNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FormDataEvent", | |
"globalThis.FormDataEvent.prototype.formData", | |
"globalThis.FormDataEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FormData", | |
"globalThis.FormData.prototype.append", | |
"globalThis.FormData.prototype.delete", | |
"globalThis.FormData.prototype.get", | |
"globalThis.FormData.prototype.getAll", | |
"globalThis.FormData.prototype.has", | |
"globalThis.FormData.prototype.set", | |
"globalThis.FormData.prototype.entries", | |
"globalThis.FormData.prototype.forEach", | |
"globalThis.FormData.prototype.keys", | |
"globalThis.FormData.prototype.values", | |
"globalThis.FormData.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FormData.prototype.Symbol(Symbol.iterator)", | |
"globalThis.FontFaceSetLoadEvent", | |
"globalThis.FontFaceSetLoadEvent.prototype.fontfaces", | |
"globalThis.FontFaceSetLoadEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FontFace", | |
"globalThis.FontFace.prototype.family", | |
"globalThis.FontFace.prototype.style", | |
"globalThis.FontFace.prototype.weight", | |
"globalThis.FontFace.prototype.stretch", | |
"globalThis.FontFace.prototype.unicodeRange", | |
"globalThis.FontFace.prototype.variant", | |
"globalThis.FontFace.prototype.featureSettings", | |
"globalThis.FontFace.prototype.display", | |
"globalThis.FontFace.prototype.ascentOverride", | |
"globalThis.FontFace.prototype.descentOverride", | |
"globalThis.FontFace.prototype.lineGapOverride", | |
"globalThis.FontFace.prototype.sizeAdjust", | |
"globalThis.FontFace.prototype.status", | |
"globalThis.FontFace.prototype.loaded", | |
"globalThis.FontFace.prototype.load", | |
"globalThis.FontFace.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FocusEvent", | |
"globalThis.FocusEvent.prototype.relatedTarget", | |
"globalThis.FocusEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FileReader", | |
"globalThis.FileReader.prototype.readyState", | |
"globalThis.FileReader.prototype.result", | |
"globalThis.FileReader.prototype.error", | |
"globalThis.FileReader.prototype.onloadstart", | |
"globalThis.FileReader.prototype.onprogress", | |
"globalThis.FileReader.prototype.onload", | |
"globalThis.FileReader.prototype.onabort", | |
"globalThis.FileReader.prototype.onerror", | |
"globalThis.FileReader.prototype.onloadend", | |
"globalThis.FileReader.prototype.abort", | |
"globalThis.FileReader.prototype.readAsArrayBuffer", | |
"globalThis.FileReader.prototype.readAsBinaryString", | |
"globalThis.FileReader.prototype.readAsDataURL", | |
"globalThis.FileReader.prototype.readAsText", | |
"globalThis.FileReader.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FileList", | |
"globalThis.FileList.prototype.length", | |
"globalThis.FileList.prototype.item", | |
"globalThis.FileList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FileList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.File", | |
"globalThis.File.prototype.name", | |
"globalThis.File.prototype.lastModified", | |
"globalThis.File.prototype.lastModifiedDate", | |
"globalThis.File.prototype.webkitRelativePath", | |
"globalThis.File.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FeaturePolicy", | |
"globalThis.FeaturePolicy.prototype.allowedFeatures", | |
"globalThis.FeaturePolicy.prototype.allowsFeature", | |
"globalThis.FeaturePolicy.prototype.features", | |
"globalThis.FeaturePolicy.prototype.getAllowlistForFeature", | |
"globalThis.FeaturePolicy.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.External", | |
"globalThis.External.prototype.AddSearchProvider", | |
"globalThis.External.prototype.IsSearchProviderInstalled", | |
"globalThis.External.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EventTarget", | |
"globalThis.EventTarget.prototype.addEventListener", | |
"globalThis.EventTarget.prototype.dispatchEvent", | |
"globalThis.EventTarget.prototype.removeEventListener", | |
"globalThis.EventTarget.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EventSource", | |
"globalThis.EventSource.prototype.url", | |
"globalThis.EventSource.prototype.withCredentials", | |
"globalThis.EventSource.prototype.readyState", | |
"globalThis.EventSource.prototype.onopen", | |
"globalThis.EventSource.prototype.onmessage", | |
"globalThis.EventSource.prototype.onerror", | |
"globalThis.EventSource.prototype.close", | |
"globalThis.EventSource.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EventCounts", | |
"globalThis.EventCounts.prototype.size", | |
"globalThis.EventCounts.prototype.entries", | |
"globalThis.EventCounts.prototype.forEach", | |
"globalThis.EventCounts.prototype.get", | |
"globalThis.EventCounts.prototype.has", | |
"globalThis.EventCounts.prototype.keys", | |
"globalThis.EventCounts.prototype.values", | |
"globalThis.EventCounts.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EventCounts.prototype.Symbol(Symbol.iterator)", | |
"globalThis.Event", | |
"globalThis.Event.prototype.type", | |
"globalThis.Event.prototype.target", | |
"globalThis.Event.prototype.currentTarget", | |
"globalThis.Event.prototype.eventPhase", | |
"globalThis.Event.prototype.bubbles", | |
"globalThis.Event.prototype.cancelable", | |
"globalThis.Event.prototype.defaultPrevented", | |
"globalThis.Event.prototype.composed", | |
"globalThis.Event.prototype.timeStamp", | |
"globalThis.Event.prototype.srcElement", | |
"globalThis.Event.prototype.returnValue", | |
"globalThis.Event.prototype.cancelBubble", | |
"globalThis.Event.prototype.composedPath", | |
"globalThis.Event.prototype.initEvent", | |
"globalThis.Event.prototype.preventDefault", | |
"globalThis.Event.prototype.stopImmediatePropagation", | |
"globalThis.Event.prototype.stopPropagation", | |
"globalThis.Event.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ErrorEvent", | |
"globalThis.ErrorEvent.prototype.message", | |
"globalThis.ErrorEvent.prototype.filename", | |
"globalThis.ErrorEvent.prototype.lineno", | |
"globalThis.ErrorEvent.prototype.colno", | |
"globalThis.ErrorEvent.prototype.error", | |
"globalThis.ErrorEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EncodedVideoChunk", | |
"globalThis.EncodedVideoChunk.prototype.type", | |
"globalThis.EncodedVideoChunk.prototype.timestamp", | |
"globalThis.EncodedVideoChunk.prototype.duration", | |
"globalThis.EncodedVideoChunk.prototype.byteLength", | |
"globalThis.EncodedVideoChunk.prototype.copyTo", | |
"globalThis.EncodedVideoChunk.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EncodedAudioChunk", | |
"globalThis.EncodedAudioChunk.prototype.type", | |
"globalThis.EncodedAudioChunk.prototype.timestamp", | |
"globalThis.EncodedAudioChunk.prototype.byteLength", | |
"globalThis.EncodedAudioChunk.prototype.duration", | |
"globalThis.EncodedAudioChunk.prototype.copyTo", | |
"globalThis.EncodedAudioChunk.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ElementInternals", | |
"globalThis.ElementInternals.prototype.form", | |
"globalThis.ElementInternals.prototype.willValidate", | |
"globalThis.ElementInternals.prototype.validity", | |
"globalThis.ElementInternals.prototype.validationMessage", | |
"globalThis.ElementInternals.prototype.labels", | |
"globalThis.ElementInternals.prototype.states", | |
"globalThis.ElementInternals.prototype.shadowRoot", | |
"globalThis.ElementInternals.prototype.role", | |
"globalThis.ElementInternals.prototype.ariaAtomic", | |
"globalThis.ElementInternals.prototype.ariaAutoComplete", | |
"globalThis.ElementInternals.prototype.ariaBusy", | |
"globalThis.ElementInternals.prototype.ariaBrailleLabel", | |
"globalThis.ElementInternals.prototype.ariaBrailleRoleDescription", | |
"globalThis.ElementInternals.prototype.ariaChecked", | |
"globalThis.ElementInternals.prototype.ariaColCount", | |
"globalThis.ElementInternals.prototype.ariaColIndex", | |
"globalThis.ElementInternals.prototype.ariaColSpan", | |
"globalThis.ElementInternals.prototype.ariaCurrent", | |
"globalThis.ElementInternals.prototype.ariaDescription", | |
"globalThis.ElementInternals.prototype.ariaDisabled", | |
"globalThis.ElementInternals.prototype.ariaExpanded", | |
"globalThis.ElementInternals.prototype.ariaHasPopup", | |
"globalThis.ElementInternals.prototype.ariaHidden", | |
"globalThis.ElementInternals.prototype.ariaInvalid", | |
"globalThis.ElementInternals.prototype.ariaKeyShortcuts", | |
"globalThis.ElementInternals.prototype.ariaLabel", | |
"globalThis.ElementInternals.prototype.ariaLevel", | |
"globalThis.ElementInternals.prototype.ariaLive", | |
"globalThis.ElementInternals.prototype.ariaModal", | |
"globalThis.ElementInternals.prototype.ariaMultiLine", | |
"globalThis.ElementInternals.prototype.ariaMultiSelectable", | |
"globalThis.ElementInternals.prototype.ariaOrientation", | |
"globalThis.ElementInternals.prototype.ariaPlaceholder", | |
"globalThis.ElementInternals.prototype.ariaPosInSet", | |
"globalThis.ElementInternals.prototype.ariaPressed", | |
"globalThis.ElementInternals.prototype.ariaReadOnly", | |
"globalThis.ElementInternals.prototype.ariaRelevant", | |
"globalThis.ElementInternals.prototype.ariaRequired", | |
"globalThis.ElementInternals.prototype.ariaRoleDescription", | |
"globalThis.ElementInternals.prototype.ariaRowCount", | |
"globalThis.ElementInternals.prototype.ariaRowIndex", | |
"globalThis.ElementInternals.prototype.ariaRowSpan", | |
"globalThis.ElementInternals.prototype.ariaSelected", | |
"globalThis.ElementInternals.prototype.ariaSetSize", | |
"globalThis.ElementInternals.prototype.ariaSort", | |
"globalThis.ElementInternals.prototype.ariaValueMax", | |
"globalThis.ElementInternals.prototype.ariaValueMin", | |
"globalThis.ElementInternals.prototype.ariaValueNow", | |
"globalThis.ElementInternals.prototype.ariaValueText", | |
"globalThis.ElementInternals.prototype.checkValidity", | |
"globalThis.ElementInternals.prototype.reportValidity", | |
"globalThis.ElementInternals.prototype.setFormValue", | |
"globalThis.ElementInternals.prototype.setValidity", | |
"globalThis.ElementInternals.prototype.ariaVirtualContent", | |
"globalThis.ElementInternals.prototype.ariaActiveDescendantElement", | |
"globalThis.ElementInternals.prototype.ariaControlsElements", | |
"globalThis.ElementInternals.prototype.ariaDescribedByElements", | |
"globalThis.ElementInternals.prototype.ariaDetailsElements", | |
"globalThis.ElementInternals.prototype.ariaErrorMessageElements", | |
"globalThis.ElementInternals.prototype.ariaFlowToElements", | |
"globalThis.ElementInternals.prototype.ariaLabelledByElements", | |
"globalThis.ElementInternals.prototype.ariaOwnsElements", | |
"globalThis.ElementInternals.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Element", | |
"globalThis.Element.prototype.namespaceURI", | |
"globalThis.Element.prototype.prefix", | |
"globalThis.Element.prototype.localName", | |
"globalThis.Element.prototype.tagName", | |
"globalThis.Element.prototype.id", | |
"globalThis.Element.prototype.className", | |
"globalThis.Element.prototype.classList", | |
"globalThis.Element.prototype.slot", | |
"globalThis.Element.prototype.attributes", | |
"globalThis.Element.prototype.shadowRoot", | |
"globalThis.Element.prototype.part", | |
"globalThis.Element.prototype.assignedSlot", | |
"globalThis.Element.prototype.innerHTML", | |
"globalThis.Element.prototype.outerHTML", | |
"globalThis.Element.prototype.scrollTop", | |
"globalThis.Element.prototype.scrollLeft", | |
"globalThis.Element.prototype.scrollWidth", | |
"globalThis.Element.prototype.scrollHeight", | |
"globalThis.Element.prototype.clientTop", | |
"globalThis.Element.prototype.clientLeft", | |
"globalThis.Element.prototype.clientWidth", | |
"globalThis.Element.prototype.clientHeight", | |
"globalThis.Element.prototype.onbeforecopy", | |
"globalThis.Element.prototype.onbeforecut", | |
"globalThis.Element.prototype.onbeforepaste", | |
"globalThis.Element.prototype.onsearch", | |
"globalThis.Element.prototype.elementTiming", | |
"globalThis.Element.prototype.onfullscreenchange", | |
"globalThis.Element.prototype.onfullscreenerror", | |
"globalThis.Element.prototype.onwebkitfullscreenchange", | |
"globalThis.Element.prototype.onwebkitfullscreenerror", | |
"globalThis.Element.prototype.role", | |
"globalThis.Element.prototype.ariaAtomic", | |
"globalThis.Element.prototype.ariaAutoComplete", | |
"globalThis.Element.prototype.ariaBusy", | |
"globalThis.Element.prototype.ariaBrailleLabel", | |
"globalThis.Element.prototype.ariaBrailleRoleDescription", | |
"globalThis.Element.prototype.ariaChecked", | |
"globalThis.Element.prototype.ariaColCount", | |
"globalThis.Element.prototype.ariaColIndex", | |
"globalThis.Element.prototype.ariaColSpan", | |
"globalThis.Element.prototype.ariaCurrent", | |
"globalThis.Element.prototype.ariaDescription", | |
"globalThis.Element.prototype.ariaDisabled", | |
"globalThis.Element.prototype.ariaExpanded", | |
"globalThis.Element.prototype.ariaHasPopup", | |
"globalThis.Element.prototype.ariaHidden", | |
"globalThis.Element.prototype.ariaInvalid", | |
"globalThis.Element.prototype.ariaKeyShortcuts", | |
"globalThis.Element.prototype.ariaLabel", | |
"globalThis.Element.prototype.ariaLevel", | |
"globalThis.Element.prototype.ariaLive", | |
"globalThis.Element.prototype.ariaModal", | |
"globalThis.Element.prototype.ariaMultiLine", | |
"globalThis.Element.prototype.ariaMultiSelectable", | |
"globalThis.Element.prototype.ariaOrientation", | |
"globalThis.Element.prototype.ariaPlaceholder", | |
"globalThis.Element.prototype.ariaPosInSet", | |
"globalThis.Element.prototype.ariaPressed", | |
"globalThis.Element.prototype.ariaReadOnly", | |
"globalThis.Element.prototype.ariaRelevant", | |
"globalThis.Element.prototype.ariaRequired", | |
"globalThis.Element.prototype.ariaRoleDescription", | |
"globalThis.Element.prototype.ariaRowCount", | |
"globalThis.Element.prototype.ariaRowIndex", | |
"globalThis.Element.prototype.ariaRowSpan", | |
"globalThis.Element.prototype.ariaSelected", | |
"globalThis.Element.prototype.ariaSetSize", | |
"globalThis.Element.prototype.ariaSort", | |
"globalThis.Element.prototype.ariaValueMax", | |
"globalThis.Element.prototype.ariaValueMin", | |
"globalThis.Element.prototype.ariaValueNow", | |
"globalThis.Element.prototype.ariaValueText", | |
"globalThis.Element.prototype.children", | |
"globalThis.Element.prototype.firstElementChild", | |
"globalThis.Element.prototype.lastElementChild", | |
"globalThis.Element.prototype.childElementCount", | |
"globalThis.Element.prototype.previousElementSibling", | |
"globalThis.Element.prototype.nextElementSibling", | |
"globalThis.Element.prototype.after", | |
"globalThis.Element.prototype.animate", | |
"globalThis.Element.prototype.append", | |
"globalThis.Element.prototype.attachShadow", | |
"globalThis.Element.prototype.before", | |
"globalThis.Element.prototype.closest", | |
"globalThis.Element.prototype.computedStyleMap", | |
"globalThis.Element.prototype.getAttribute", | |
"globalThis.Element.prototype.getAttributeNS", | |
"globalThis.Element.prototype.getAttributeNames", | |
"globalThis.Element.prototype.getAttributeNode", | |
"globalThis.Element.prototype.getAttributeNodeNS", | |
"globalThis.Element.prototype.getBoundingClientRect", | |
"globalThis.Element.prototype.getClientRects", | |
"globalThis.Element.prototype.getElementsByClassName", | |
"globalThis.Element.prototype.getElementsByTagName", | |
"globalThis.Element.prototype.getElementsByTagNameNS", | |
"globalThis.Element.prototype.getInnerHTML", | |
"globalThis.Element.prototype.hasAttribute", | |
"globalThis.Element.prototype.hasAttributeNS", | |
"globalThis.Element.prototype.hasAttributes", | |
"globalThis.Element.prototype.hasPointerCapture", | |
"globalThis.Element.prototype.insertAdjacentElement", | |
"globalThis.Element.prototype.insertAdjacentHTML", | |
"globalThis.Element.prototype.insertAdjacentText", | |
"globalThis.Element.prototype.matches", | |
"globalThis.Element.prototype.prepend", | |
"globalThis.Element.prototype.querySelector", | |
"globalThis.Element.prototype.querySelectorAll", | |
"globalThis.Element.prototype.releasePointerCapture", | |
"globalThis.Element.prototype.remove", | |
"globalThis.Element.prototype.removeAttribute", | |
"globalThis.Element.prototype.removeAttributeNS", | |
"globalThis.Element.prototype.removeAttributeNode", | |
"globalThis.Element.prototype.replaceChildren", | |
"globalThis.Element.prototype.replaceWith", | |
"globalThis.Element.prototype.requestFullscreen", | |
"globalThis.Element.prototype.requestPointerLock", | |
"globalThis.Element.prototype.scroll", | |
"globalThis.Element.prototype.scrollBy", | |
"globalThis.Element.prototype.scrollIntoView", | |
"globalThis.Element.prototype.scrollIntoViewIfNeeded", | |
"globalThis.Element.prototype.scrollTo", | |
"globalThis.Element.prototype.setAttribute", | |
"globalThis.Element.prototype.setAttributeNS", | |
"globalThis.Element.prototype.setAttributeNode", | |
"globalThis.Element.prototype.setAttributeNodeNS", | |
"globalThis.Element.prototype.setPointerCapture", | |
"globalThis.Element.prototype.toggleAttribute", | |
"globalThis.Element.prototype.webkitMatchesSelector", | |
"globalThis.Element.prototype.webkitRequestFullScreen", | |
"globalThis.Element.prototype.webkitRequestFullscreen", | |
"globalThis.Element.prototype.computedRole", | |
"globalThis.Element.prototype.computedName", | |
"globalThis.Element.prototype.accessibleNode", | |
"globalThis.Element.prototype.ariaVirtualContent", | |
"globalThis.Element.prototype.ariaActiveDescendantElement", | |
"globalThis.Element.prototype.ariaControlsElements", | |
"globalThis.Element.prototype.ariaDescribedByElements", | |
"globalThis.Element.prototype.ariaDetailsElements", | |
"globalThis.Element.prototype.ariaErrorMessageElements", | |
"globalThis.Element.prototype.ariaFlowToElements", | |
"globalThis.Element.prototype.ariaLabelledByElements", | |
"globalThis.Element.prototype.ariaOwnsElements", | |
"globalThis.Element.prototype.checkVisibility", | |
"globalThis.Element.prototype.getAnimations", | |
"globalThis.Element.prototype.setHTMLUnsafe", | |
"globalThis.Element.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Element.prototype.Symbol(Symbol.unscopables)", | |
"globalThis.DynamicsCompressorNode", | |
"globalThis.DynamicsCompressorNode.prototype.threshold", | |
"globalThis.DynamicsCompressorNode.prototype.knee", | |
"globalThis.DynamicsCompressorNode.prototype.ratio", | |
"globalThis.DynamicsCompressorNode.prototype.reduction", | |
"globalThis.DynamicsCompressorNode.prototype.attack", | |
"globalThis.DynamicsCompressorNode.prototype.release", | |
"globalThis.DynamicsCompressorNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DragEvent", | |
"globalThis.DragEvent.prototype.dataTransfer", | |
"globalThis.DragEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DocumentType", | |
"globalThis.DocumentType.prototype.name", | |
"globalThis.DocumentType.prototype.publicId", | |
"globalThis.DocumentType.prototype.systemId", | |
"globalThis.DocumentType.prototype.after", | |
"globalThis.DocumentType.prototype.before", | |
"globalThis.DocumentType.prototype.remove", | |
"globalThis.DocumentType.prototype.replaceWith", | |
"globalThis.DocumentType.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DocumentType.prototype.Symbol(Symbol.unscopables)", | |
"globalThis.DocumentFragment", | |
"globalThis.DocumentFragment.prototype.children", | |
"globalThis.DocumentFragment.prototype.firstElementChild", | |
"globalThis.DocumentFragment.prototype.lastElementChild", | |
"globalThis.DocumentFragment.prototype.childElementCount", | |
"globalThis.DocumentFragment.prototype.append", | |
"globalThis.DocumentFragment.prototype.getElementById", | |
"globalThis.DocumentFragment.prototype.prepend", | |
"globalThis.DocumentFragment.prototype.querySelector", | |
"globalThis.DocumentFragment.prototype.querySelectorAll", | |
"globalThis.DocumentFragment.prototype.replaceChildren", | |
"globalThis.DocumentFragment.prototype.getPartRoot", | |
"globalThis.DocumentFragment.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DocumentFragment.prototype.Symbol(Symbol.unscopables)", | |
"globalThis.Document", | |
"globalThis.Document.prototype.implementation", | |
"globalThis.Document.prototype.URL", | |
"globalThis.Document.prototype.documentURI", | |
"globalThis.Document.prototype.compatMode", | |
"globalThis.Document.prototype.characterSet", | |
"globalThis.Document.prototype.charset", | |
"globalThis.Document.prototype.inputEncoding", | |
"globalThis.Document.prototype.contentType", | |
"globalThis.Document.prototype.doctype", | |
"globalThis.Document.prototype.documentElement", | |
"globalThis.Document.prototype.xmlEncoding", | |
"globalThis.Document.prototype.xmlVersion", | |
"globalThis.Document.prototype.xmlStandalone", | |
"globalThis.Document.prototype.domain", | |
"globalThis.Document.prototype.referrer", | |
"globalThis.Document.prototype.cookie", | |
"globalThis.Document.prototype.lastModified", | |
"globalThis.Document.prototype.readyState", | |
"globalThis.Document.prototype.title", | |
"globalThis.Document.prototype.dir", | |
"globalThis.Document.prototype.body", | |
"globalThis.Document.prototype.head", | |
"globalThis.Document.prototype.images", | |
"globalThis.Document.prototype.embeds", | |
"globalThis.Document.prototype.plugins", | |
"globalThis.Document.prototype.links", | |
"globalThis.Document.prototype.forms", | |
"globalThis.Document.prototype.scripts", | |
"globalThis.Document.prototype.currentScript", | |
"globalThis.Document.prototype.defaultView", | |
"globalThis.Document.prototype.designMode", | |
"globalThis.Document.prototype.onreadystatechange", | |
"globalThis.Document.prototype.anchors", | |
"globalThis.Document.prototype.applets", | |
"globalThis.Document.prototype.fgColor", | |
"globalThis.Document.prototype.linkColor", | |
"globalThis.Document.prototype.vlinkColor", | |
"globalThis.Document.prototype.alinkColor", | |
"globalThis.Document.prototype.bgColor", | |
"globalThis.Document.prototype.all", | |
"globalThis.Document.prototype.scrollingElement", | |
"globalThis.Document.prototype.onpointerlockchange", | |
"globalThis.Document.prototype.onpointerlockerror", | |
"globalThis.Document.prototype.hidden", | |
"globalThis.Document.prototype.visibilityState", | |
"globalThis.Document.prototype.wasDiscarded", | |
"globalThis.Document.prototype.prerendering", | |
"globalThis.Document.prototype.featurePolicy", | |
"globalThis.Document.prototype.webkitVisibilityState", | |
"globalThis.Document.prototype.webkitHidden", | |
"globalThis.Document.prototype.onbeforecopy", | |
"globalThis.Document.prototype.onbeforecut", | |
"globalThis.Document.prototype.onbeforepaste", | |
"globalThis.Document.prototype.onfreeze", | |
"globalThis.Document.prototype.onprerenderingchange", | |
"globalThis.Document.prototype.onresume", | |
"globalThis.Document.prototype.onsearch", | |
"globalThis.Document.prototype.onvisibilitychange", | |
"globalThis.Document.prototype.fullscreenEnabled", | |
"globalThis.Document.prototype.fullscreen", | |
"globalThis.Document.prototype.onfullscreenchange", | |
"globalThis.Document.prototype.onfullscreenerror", | |
"globalThis.Document.prototype.webkitIsFullScreen", | |
"globalThis.Document.prototype.webkitCurrentFullScreenElement", | |
"globalThis.Document.prototype.webkitFullscreenEnabled", | |
"globalThis.Document.prototype.webkitFullscreenElement", | |
"globalThis.Document.prototype.onwebkitfullscreenchange", | |
"globalThis.Document.prototype.onwebkitfullscreenerror", | |
"globalThis.Document.prototype.rootElement", | |
"globalThis.Document.prototype.pictureInPictureEnabled", | |
"globalThis.Document.prototype.onbeforexrselect", | |
"globalThis.Document.prototype.onabort", | |
"globalThis.Document.prototype.onbeforeinput", | |
"globalThis.Document.prototype.onbeforetoggle", | |
"globalThis.Document.prototype.onblur", | |
"globalThis.Document.prototype.oncancel", | |
"globalThis.Document.prototype.oncanplay", | |
"globalThis.Document.prototype.oncanplaythrough", | |
"globalThis.Document.prototype.onchange", | |
"globalThis.Document.prototype.onclick", | |
"globalThis.Document.prototype.onclose", | |
"globalThis.Document.prototype.oncontextlost", | |
"globalThis.Document.prototype.oncontextmenu", | |
"globalThis.Document.prototype.oncontextrestored", | |
"globalThis.Document.prototype.oncuechange", | |
"globalThis.Document.prototype.ondblclick", | |
"globalThis.Document.prototype.ondrag", | |
"globalThis.Document.prototype.ondragend", | |
"globalThis.Document.prototype.ondragenter", | |
"globalThis.Document.prototype.ondragleave", | |
"globalThis.Document.prototype.ondragover", | |
"globalThis.Document.prototype.ondragstart", | |
"globalThis.Document.prototype.ondrop", | |
"globalThis.Document.prototype.ondurationchange", | |
"globalThis.Document.prototype.onemptied", | |
"globalThis.Document.prototype.onended", | |
"globalThis.Document.prototype.onerror", | |
"globalThis.Document.prototype.onfocus", | |
"globalThis.Document.prototype.onformdata", | |
"globalThis.Document.prototype.oninput", | |
"globalThis.Document.prototype.oninvalid", | |
"globalThis.Document.prototype.onkeydown", | |
"globalThis.Document.prototype.onkeypress", | |
"globalThis.Document.prototype.onkeyup", | |
"globalThis.Document.prototype.onload", | |
"globalThis.Document.prototype.onloadeddata", | |
"globalThis.Document.prototype.onloadedmetadata", | |
"globalThis.Document.prototype.onloadstart", | |
"globalThis.Document.prototype.onmousedown", | |
"globalThis.Document.prototype.onmouseenter", | |
"globalThis.Document.prototype.onmouseleave", | |
"globalThis.Document.prototype.onmousemove", | |
"globalThis.Document.prototype.onmouseout", | |
"globalThis.Document.prototype.onmouseover", | |
"globalThis.Document.prototype.onmouseup", | |
"globalThis.Document.prototype.onmousewheel", | |
"globalThis.Document.prototype.onpause", | |
"globalThis.Document.prototype.onplay", | |
"globalThis.Document.prototype.onplaying", | |
"globalThis.Document.prototype.onprogress", | |
"globalThis.Document.prototype.onratechange", | |
"globalThis.Document.prototype.onreset", | |
"globalThis.Document.prototype.onresize", | |
"globalThis.Document.prototype.onscroll", | |
"globalThis.Document.prototype.onsecuritypolicyviolation", | |
"globalThis.Document.prototype.onseeked", | |
"globalThis.Document.prototype.onseeking", | |
"globalThis.Document.prototype.onselect", | |
"globalThis.Document.prototype.onslotchange", | |
"globalThis.Document.prototype.onstalled", | |
"globalThis.Document.prototype.onsubmit", | |
"globalThis.Document.prototype.onsuspend", | |
"globalThis.Document.prototype.ontimeupdate", | |
"globalThis.Document.prototype.ontoggle", | |
"globalThis.Document.prototype.onvolumechange", | |
"globalThis.Document.prototype.onwaiting", | |
"globalThis.Document.prototype.onwebkitanimationend", | |
"globalThis.Document.prototype.onwebkitanimationiteration", | |
"globalThis.Document.prototype.onwebkitanimationstart", | |
"globalThis.Document.prototype.onwebkittransitionend", | |
"globalThis.Document.prototype.onwheel", | |
"globalThis.Document.prototype.onauxclick", | |
"globalThis.Document.prototype.ongotpointercapture", | |
"globalThis.Document.prototype.onlostpointercapture", | |
"globalThis.Document.prototype.onpointerdown", | |
"globalThis.Document.prototype.onpointermove", | |
"globalThis.Document.prototype.onpointerrawupdate", | |
"globalThis.Document.prototype.onpointerup", | |
"globalThis.Document.prototype.onpointercancel", | |
"globalThis.Document.prototype.onpointerover", | |
"globalThis.Document.prototype.onpointerout", | |
"globalThis.Document.prototype.onpointerenter", | |
"globalThis.Document.prototype.onpointerleave", | |
"globalThis.Document.prototype.onselectstart", | |
"globalThis.Document.prototype.onselectionchange", | |
"globalThis.Document.prototype.onanimationend", | |
"globalThis.Document.prototype.onanimationiteration", | |
"globalThis.Document.prototype.onanimationstart", | |
"globalThis.Document.prototype.ontransitionrun", | |
"globalThis.Document.prototype.ontransitionstart", | |
"globalThis.Document.prototype.ontransitionend", | |
"globalThis.Document.prototype.ontransitioncancel", | |
"globalThis.Document.prototype.oncopy", | |
"globalThis.Document.prototype.oncut", | |
"globalThis.Document.prototype.onpaste", | |
"globalThis.Document.prototype.children", | |
"globalThis.Document.prototype.firstElementChild", | |
"globalThis.Document.prototype.lastElementChild", | |
"globalThis.Document.prototype.childElementCount", | |
"globalThis.Document.prototype.activeElement", | |
"globalThis.Document.prototype.styleSheets", | |
"globalThis.Document.prototype.pointerLockElement", | |
"globalThis.Document.prototype.fullscreenElement", | |
"globalThis.Document.prototype.adoptedStyleSheets", | |
"globalThis.Document.prototype.pictureInPictureElement", | |
"globalThis.Document.prototype.fonts", | |
"globalThis.Document.prototype.adoptNode", | |
"globalThis.Document.prototype.append", | |
"globalThis.Document.prototype.captureEvents", | |
"globalThis.Document.prototype.caretRangeFromPoint", | |
"globalThis.Document.prototype.clear", | |
"globalThis.Document.prototype.close", | |
"globalThis.Document.prototype.createAttribute", | |
"globalThis.Document.prototype.createAttributeNS", | |
"globalThis.Document.prototype.createCDATASection", | |
"globalThis.Document.prototype.createComment", | |
"globalThis.Document.prototype.createDocumentFragment", | |
"globalThis.Document.prototype.createElement", | |
"globalThis.Document.prototype.createElementNS", | |
"globalThis.Document.prototype.createEvent", | |
"globalThis.Document.prototype.createExpression", | |
"globalThis.Document.prototype.createNSResolver", | |
"globalThis.Document.prototype.createNodeIterator", | |
"globalThis.Document.prototype.createProcessingInstruction", | |
"globalThis.Document.prototype.createRange", | |
"globalThis.Document.prototype.createTextNode", | |
"globalThis.Document.prototype.createTreeWalker", | |
"globalThis.Document.prototype.elementFromPoint", | |
"globalThis.Document.prototype.elementsFromPoint", | |
"globalThis.Document.prototype.evaluate", | |
"globalThis.Document.prototype.execCommand", | |
"globalThis.Document.prototype.exitFullscreen", | |
"globalThis.Document.prototype.exitPictureInPicture", | |
"globalThis.Document.prototype.exitPointerLock", | |
"globalThis.Document.prototype.getElementById", | |
"globalThis.Document.prototype.getElementsByClassName", | |
"globalThis.Document.prototype.getElementsByName", | |
"globalThis.Document.prototype.getElementsByTagName", | |
"globalThis.Document.prototype.getElementsByTagNameNS", | |
"globalThis.Document.prototype.getSelection", | |
"globalThis.Document.prototype.hasFocus", | |
"globalThis.Document.prototype.importNode", | |
"globalThis.Document.prototype.open", | |
"globalThis.Document.prototype.prepend", | |
"globalThis.Document.prototype.queryCommandEnabled", | |
"globalThis.Document.prototype.queryCommandIndeterm", | |
"globalThis.Document.prototype.queryCommandState", | |
"globalThis.Document.prototype.queryCommandSupported", | |
"globalThis.Document.prototype.queryCommandValue", | |
"globalThis.Document.prototype.querySelector", | |
"globalThis.Document.prototype.querySelectorAll", | |
"globalThis.Document.prototype.releaseEvents", | |
"globalThis.Document.prototype.replaceChildren", | |
"globalThis.Document.prototype.startViewTransition", | |
"globalThis.Document.prototype.webkitCancelFullScreen", | |
"globalThis.Document.prototype.webkitExitFullscreen", | |
"globalThis.Document.prototype.write", | |
"globalThis.Document.prototype.writeln", | |
"globalThis.Document.prototype.softNavigations", | |
"globalThis.Document.prototype.fragmentDirective", | |
"globalThis.Document.prototype.onbeforematch", | |
"globalThis.Document.prototype.requestStorageAccess", | |
"globalThis.Document.prototype.timeline", | |
"globalThis.Document.prototype.oncontentvisibilityautostatechange", | |
"globalThis.Document.prototype.onoverscroll", | |
"globalThis.Document.prototype.onscrollend", | |
"globalThis.Document.prototype.getAnimations", | |
"globalThis.Document.prototype.getPartRoot", | |
"globalThis.Document.prototype.hasStorageAccess", | |
"globalThis.Document.prototype.requestStorageAccessFor", | |
"globalThis.Document.prototype.setSequentialFocusStartingPoint", | |
"globalThis.Document.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Document.prototype.Symbol(Symbol.unscopables)", | |
"globalThis.Document.parseHTMLUnsafe", | |
"globalThis.DelayNode", | |
"globalThis.DelayNode.prototype.delayTime", | |
"globalThis.DelayNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DecompressionStream", | |
"globalThis.DecompressionStream.prototype.readable", | |
"globalThis.DecompressionStream.prototype.writable", | |
"globalThis.DecompressionStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DataTransferItemList", | |
"globalThis.DataTransferItemList.prototype.length", | |
"globalThis.DataTransferItemList.prototype.add", | |
"globalThis.DataTransferItemList.prototype.clear", | |
"globalThis.DataTransferItemList.prototype.remove", | |
"globalThis.DataTransferItemList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DataTransferItemList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.DataTransferItem", | |
"globalThis.DataTransferItem.prototype.kind", | |
"globalThis.DataTransferItem.prototype.type", | |
"globalThis.DataTransferItem.prototype.getAsFile", | |
"globalThis.DataTransferItem.prototype.getAsString", | |
"globalThis.DataTransferItem.prototype.webkitGetAsEntry", | |
"globalThis.DataTransferItem.prototype.getAsFileSystemHandle", | |
"globalThis.DataTransferItem.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DataTransfer", | |
"globalThis.DataTransfer.prototype.dropEffect", | |
"globalThis.DataTransfer.prototype.effectAllowed", | |
"globalThis.DataTransfer.prototype.items", | |
"globalThis.DataTransfer.prototype.types", | |
"globalThis.DataTransfer.prototype.files", | |
"globalThis.DataTransfer.prototype.clearData", | |
"globalThis.DataTransfer.prototype.getData", | |
"globalThis.DataTransfer.prototype.setData", | |
"globalThis.DataTransfer.prototype.setDragImage", | |
"globalThis.DataTransfer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMTokenList", | |
"globalThis.DOMTokenList.prototype.entries", | |
"globalThis.DOMTokenList.prototype.keys", | |
"globalThis.DOMTokenList.prototype.values", | |
"globalThis.DOMTokenList.prototype.forEach", | |
"globalThis.DOMTokenList.prototype.length", | |
"globalThis.DOMTokenList.prototype.value", | |
"globalThis.DOMTokenList.prototype.add", | |
"globalThis.DOMTokenList.prototype.contains", | |
"globalThis.DOMTokenList.prototype.item", | |
"globalThis.DOMTokenList.prototype.remove", | |
"globalThis.DOMTokenList.prototype.replace", | |
"globalThis.DOMTokenList.prototype.supports", | |
"globalThis.DOMTokenList.prototype.toggle", | |
"globalThis.DOMTokenList.prototype.toString", | |
"globalThis.DOMTokenList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMTokenList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.DOMStringMap", | |
"globalThis.DOMStringMap.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMStringList", | |
"globalThis.DOMStringList.prototype.length", | |
"globalThis.DOMStringList.prototype.contains", | |
"globalThis.DOMStringList.prototype.item", | |
"globalThis.DOMStringList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMStringList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.DOMRectReadOnly", | |
"globalThis.DOMRectReadOnly.prototype.x", | |
"globalThis.DOMRectReadOnly.prototype.y", | |
"globalThis.DOMRectReadOnly.prototype.width", | |
"globalThis.DOMRectReadOnly.prototype.height", | |
"globalThis.DOMRectReadOnly.prototype.top", | |
"globalThis.DOMRectReadOnly.prototype.right", | |
"globalThis.DOMRectReadOnly.prototype.bottom", | |
"globalThis.DOMRectReadOnly.prototype.left", | |
"globalThis.DOMRectReadOnly.prototype.toJSON", | |
"globalThis.DOMRectReadOnly.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMRectReadOnly.fromRect", | |
"globalThis.DOMRectList", | |
"globalThis.DOMRectList.prototype.length", | |
"globalThis.DOMRectList.prototype.item", | |
"globalThis.DOMRectList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMRectList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.DOMRect", | |
"globalThis.DOMRect.prototype.x", | |
"globalThis.DOMRect.prototype.y", | |
"globalThis.DOMRect.prototype.width", | |
"globalThis.DOMRect.prototype.height", | |
"globalThis.DOMRect.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMRect.fromRect", | |
"globalThis.DOMQuad", | |
"globalThis.DOMQuad.prototype.p1", | |
"globalThis.DOMQuad.prototype.p2", | |
"globalThis.DOMQuad.prototype.p3", | |
"globalThis.DOMQuad.prototype.p4", | |
"globalThis.DOMQuad.prototype.getBounds", | |
"globalThis.DOMQuad.prototype.toJSON", | |
"globalThis.DOMQuad.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMQuad.fromQuad", | |
"globalThis.DOMQuad.fromRect", | |
"globalThis.DOMPointReadOnly", | |
"globalThis.DOMPointReadOnly.prototype.x", | |
"globalThis.DOMPointReadOnly.prototype.y", | |
"globalThis.DOMPointReadOnly.prototype.z", | |
"globalThis.DOMPointReadOnly.prototype.w", | |
"globalThis.DOMPointReadOnly.prototype.matrixTransform", | |
"globalThis.DOMPointReadOnly.prototype.toJSON", | |
"globalThis.DOMPointReadOnly.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMPointReadOnly.fromPoint", | |
"globalThis.DOMPoint", | |
"globalThis.DOMPoint.prototype.x", | |
"globalThis.DOMPoint.prototype.y", | |
"globalThis.DOMPoint.prototype.z", | |
"globalThis.DOMPoint.prototype.w", | |
"globalThis.DOMPoint.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMPoint.fromPoint", | |
"globalThis.DOMParser", | |
"globalThis.DOMParser.prototype.parseFromString", | |
"globalThis.DOMParser.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMMatrixReadOnly", | |
"globalThis.DOMMatrixReadOnly.prototype.a", | |
"globalThis.DOMMatrixReadOnly.prototype.b", | |
"globalThis.DOMMatrixReadOnly.prototype.c", | |
"globalThis.DOMMatrixReadOnly.prototype.d", | |
"globalThis.DOMMatrixReadOnly.prototype.e", | |
"globalThis.DOMMatrixReadOnly.prototype.f", | |
"globalThis.DOMMatrixReadOnly.prototype.m11", | |
"globalThis.DOMMatrixReadOnly.prototype.m12", | |
"globalThis.DOMMatrixReadOnly.prototype.m13", | |
"globalThis.DOMMatrixReadOnly.prototype.m14", | |
"globalThis.DOMMatrixReadOnly.prototype.m21", | |
"globalThis.DOMMatrixReadOnly.prototype.m22", | |
"globalThis.DOMMatrixReadOnly.prototype.m23", | |
"globalThis.DOMMatrixReadOnly.prototype.m24", | |
"globalThis.DOMMatrixReadOnly.prototype.m31", | |
"globalThis.DOMMatrixReadOnly.prototype.m32", | |
"globalThis.DOMMatrixReadOnly.prototype.m33", | |
"globalThis.DOMMatrixReadOnly.prototype.m34", | |
"globalThis.DOMMatrixReadOnly.prototype.m41", | |
"globalThis.DOMMatrixReadOnly.prototype.m42", | |
"globalThis.DOMMatrixReadOnly.prototype.m43", | |
"globalThis.DOMMatrixReadOnly.prototype.m44", | |
"globalThis.DOMMatrixReadOnly.prototype.is2D", | |
"globalThis.DOMMatrixReadOnly.prototype.isIdentity", | |
"globalThis.DOMMatrixReadOnly.prototype.flipX", | |
"globalThis.DOMMatrixReadOnly.prototype.flipY", | |
"globalThis.DOMMatrixReadOnly.prototype.inverse", | |
"globalThis.DOMMatrixReadOnly.prototype.multiply", | |
"globalThis.DOMMatrixReadOnly.prototype.rotate", | |
"globalThis.DOMMatrixReadOnly.prototype.rotateAxisAngle", | |
"globalThis.DOMMatrixReadOnly.prototype.rotateFromVector", | |
"globalThis.DOMMatrixReadOnly.prototype.scale", | |
"globalThis.DOMMatrixReadOnly.prototype.scale3d", | |
"globalThis.DOMMatrixReadOnly.prototype.scaleNonUniform", | |
"globalThis.DOMMatrixReadOnly.prototype.skewX", | |
"globalThis.DOMMatrixReadOnly.prototype.skewY", | |
"globalThis.DOMMatrixReadOnly.prototype.toFloat32Array", | |
"globalThis.DOMMatrixReadOnly.prototype.toFloat64Array", | |
"globalThis.DOMMatrixReadOnly.prototype.toJSON", | |
"globalThis.DOMMatrixReadOnly.prototype.transformPoint", | |
"globalThis.DOMMatrixReadOnly.prototype.translate", | |
"globalThis.DOMMatrixReadOnly.prototype.toString", | |
"globalThis.DOMMatrixReadOnly.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMMatrixReadOnly.fromFloat32Array", | |
"globalThis.DOMMatrixReadOnly.fromFloat64Array", | |
"globalThis.DOMMatrixReadOnly.fromMatrix", | |
"globalThis.DOMMatrix", | |
"globalThis.DOMMatrix.prototype.a", | |
"globalThis.DOMMatrix.prototype.b", | |
"globalThis.DOMMatrix.prototype.c", | |
"globalThis.DOMMatrix.prototype.d", | |
"globalThis.DOMMatrix.prototype.e", | |
"globalThis.DOMMatrix.prototype.f", | |
"globalThis.DOMMatrix.prototype.m11", | |
"globalThis.DOMMatrix.prototype.m12", | |
"globalThis.DOMMatrix.prototype.m13", | |
"globalThis.DOMMatrix.prototype.m14", | |
"globalThis.DOMMatrix.prototype.m21", | |
"globalThis.DOMMatrix.prototype.m22", | |
"globalThis.DOMMatrix.prototype.m23", | |
"globalThis.DOMMatrix.prototype.m24", | |
"globalThis.DOMMatrix.prototype.m31", | |
"globalThis.DOMMatrix.prototype.m32", | |
"globalThis.DOMMatrix.prototype.m33", | |
"globalThis.DOMMatrix.prototype.m34", | |
"globalThis.DOMMatrix.prototype.m41", | |
"globalThis.DOMMatrix.prototype.m42", | |
"globalThis.DOMMatrix.prototype.m43", | |
"globalThis.DOMMatrix.prototype.m44", | |
"globalThis.DOMMatrix.prototype.invertSelf", | |
"globalThis.DOMMatrix.prototype.multiplySelf", | |
"globalThis.DOMMatrix.prototype.preMultiplySelf", | |
"globalThis.DOMMatrix.prototype.rotateAxisAngleSelf", | |
"globalThis.DOMMatrix.prototype.rotateFromVectorSelf", | |
"globalThis.DOMMatrix.prototype.rotateSelf", | |
"globalThis.DOMMatrix.prototype.scale3dSelf", | |
"globalThis.DOMMatrix.prototype.scaleSelf", | |
"globalThis.DOMMatrix.prototype.skewXSelf", | |
"globalThis.DOMMatrix.prototype.skewYSelf", | |
"globalThis.DOMMatrix.prototype.translateSelf", | |
"globalThis.DOMMatrix.prototype.setMatrixValue", | |
"globalThis.DOMMatrix.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMMatrix.fromFloat32Array", | |
"globalThis.DOMMatrix.fromFloat64Array", | |
"globalThis.DOMMatrix.fromMatrix", | |
"globalThis.DOMImplementation", | |
"globalThis.DOMImplementation.prototype.createDocument", | |
"globalThis.DOMImplementation.prototype.createDocumentType", | |
"globalThis.DOMImplementation.prototype.createHTMLDocument", | |
"globalThis.DOMImplementation.prototype.hasFeature", | |
"globalThis.DOMImplementation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMException", | |
"globalThis.DOMException.prototype.code", | |
"globalThis.DOMException.prototype.name", | |
"globalThis.DOMException.prototype.message", | |
"globalThis.DOMException.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DOMError", | |
"globalThis.DOMError.prototype.name", | |
"globalThis.DOMError.prototype.message", | |
"globalThis.DOMError.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CustomStateSet", | |
"globalThis.CustomStateSet.prototype.size", | |
"globalThis.CustomStateSet.prototype.add", | |
"globalThis.CustomStateSet.prototype.clear", | |
"globalThis.CustomStateSet.prototype.delete", | |
"globalThis.CustomStateSet.prototype.entries", | |
"globalThis.CustomStateSet.prototype.forEach", | |
"globalThis.CustomStateSet.prototype.has", | |
"globalThis.CustomStateSet.prototype.keys", | |
"globalThis.CustomStateSet.prototype.values", | |
"globalThis.CustomStateSet.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CustomStateSet.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CustomEvent", | |
"globalThis.CustomEvent.prototype.detail", | |
"globalThis.CustomEvent.prototype.initCustomEvent", | |
"globalThis.CustomEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CustomElementRegistry", | |
"globalThis.CustomElementRegistry.prototype.define", | |
"globalThis.CustomElementRegistry.prototype.get", | |
"globalThis.CustomElementRegistry.prototype.upgrade", | |
"globalThis.CustomElementRegistry.prototype.whenDefined", | |
"globalThis.CustomElementRegistry.prototype.getName", | |
"globalThis.CustomElementRegistry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Crypto", | |
"globalThis.Crypto.prototype.getRandomValues", | |
"globalThis.Crypto.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CountQueuingStrategy", | |
"globalThis.CountQueuingStrategy.prototype.highWaterMark", | |
"globalThis.CountQueuingStrategy.prototype.size", | |
"globalThis.CountQueuingStrategy.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ConvolverNode", | |
"globalThis.ConvolverNode.prototype.buffer", | |
"globalThis.ConvolverNode.prototype.normalize", | |
"globalThis.ConvolverNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ConstantSourceNode", | |
"globalThis.ConstantSourceNode.prototype.offset", | |
"globalThis.ConstantSourceNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CompressionStream", | |
"globalThis.CompressionStream.prototype.readable", | |
"globalThis.CompressionStream.prototype.writable", | |
"globalThis.CompressionStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CompositionEvent", | |
"globalThis.CompositionEvent.prototype.data", | |
"globalThis.CompositionEvent.prototype.initCompositionEvent", | |
"globalThis.CompositionEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Comment", | |
"globalThis.Comment.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CloseEvent", | |
"globalThis.CloseEvent.prototype.wasClean", | |
"globalThis.CloseEvent.prototype.code", | |
"globalThis.CloseEvent.prototype.reason", | |
"globalThis.CloseEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ClipboardEvent", | |
"globalThis.ClipboardEvent.prototype.clipboardData", | |
"globalThis.ClipboardEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CharacterData", | |
"globalThis.CharacterData.prototype.data", | |
"globalThis.CharacterData.prototype.length", | |
"globalThis.CharacterData.prototype.previousElementSibling", | |
"globalThis.CharacterData.prototype.nextElementSibling", | |
"globalThis.CharacterData.prototype.after", | |
"globalThis.CharacterData.prototype.appendData", | |
"globalThis.CharacterData.prototype.before", | |
"globalThis.CharacterData.prototype.deleteData", | |
"globalThis.CharacterData.prototype.insertData", | |
"globalThis.CharacterData.prototype.remove", | |
"globalThis.CharacterData.prototype.replaceData", | |
"globalThis.CharacterData.prototype.replaceWith", | |
"globalThis.CharacterData.prototype.substringData", | |
"globalThis.CharacterData.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CharacterData.prototype.Symbol(Symbol.unscopables)", | |
"globalThis.ChannelSplitterNode", | |
"globalThis.ChannelSplitterNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ChannelMergerNode", | |
"globalThis.ChannelMergerNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CanvasRenderingContext2D", | |
"globalThis.CanvasRenderingContext2D.prototype.canvas", | |
"globalThis.CanvasRenderingContext2D.prototype.globalAlpha", | |
"globalThis.CanvasRenderingContext2D.prototype.globalCompositeOperation", | |
"globalThis.CanvasRenderingContext2D.prototype.filter", | |
"globalThis.CanvasRenderingContext2D.prototype.imageSmoothingEnabled", | |
"globalThis.CanvasRenderingContext2D.prototype.imageSmoothingQuality", | |
"globalThis.CanvasRenderingContext2D.prototype.strokeStyle", | |
"globalThis.CanvasRenderingContext2D.prototype.fillStyle", | |
"globalThis.CanvasRenderingContext2D.prototype.shadowOffsetX", | |
"globalThis.CanvasRenderingContext2D.prototype.shadowOffsetY", | |
"globalThis.CanvasRenderingContext2D.prototype.shadowBlur", | |
"globalThis.CanvasRenderingContext2D.prototype.shadowColor", | |
"globalThis.CanvasRenderingContext2D.prototype.lineWidth", | |
"globalThis.CanvasRenderingContext2D.prototype.lineCap", | |
"globalThis.CanvasRenderingContext2D.prototype.lineJoin", | |
"globalThis.CanvasRenderingContext2D.prototype.miterLimit", | |
"globalThis.CanvasRenderingContext2D.prototype.lineDashOffset", | |
"globalThis.CanvasRenderingContext2D.prototype.font", | |
"globalThis.CanvasRenderingContext2D.prototype.textAlign", | |
"globalThis.CanvasRenderingContext2D.prototype.textBaseline", | |
"globalThis.CanvasRenderingContext2D.prototype.direction", | |
"globalThis.CanvasRenderingContext2D.prototype.fontKerning", | |
"globalThis.CanvasRenderingContext2D.prototype.fontStretch", | |
"globalThis.CanvasRenderingContext2D.prototype.fontVariantCaps", | |
"globalThis.CanvasRenderingContext2D.prototype.letterSpacing", | |
"globalThis.CanvasRenderingContext2D.prototype.textRendering", | |
"globalThis.CanvasRenderingContext2D.prototype.wordSpacing", | |
"globalThis.CanvasRenderingContext2D.prototype.clip", | |
"globalThis.CanvasRenderingContext2D.prototype.createConicGradient", | |
"globalThis.CanvasRenderingContext2D.prototype.createImageData", | |
"globalThis.CanvasRenderingContext2D.prototype.createLinearGradient", | |
"globalThis.CanvasRenderingContext2D.prototype.createPattern", | |
"globalThis.CanvasRenderingContext2D.prototype.createRadialGradient", | |
"globalThis.CanvasRenderingContext2D.prototype.drawFocusIfNeeded", | |
"globalThis.CanvasRenderingContext2D.prototype.drawImage", | |
"globalThis.CanvasRenderingContext2D.prototype.fill", | |
"globalThis.CanvasRenderingContext2D.prototype.fillText", | |
"globalThis.CanvasRenderingContext2D.prototype.getContextAttributes", | |
"globalThis.CanvasRenderingContext2D.prototype.getImageData", | |
"globalThis.CanvasRenderingContext2D.prototype.getLineDash", | |
"globalThis.CanvasRenderingContext2D.prototype.getTransform", | |
"globalThis.CanvasRenderingContext2D.prototype.isContextLost", | |
"globalThis.CanvasRenderingContext2D.prototype.isPointInPath", | |
"globalThis.CanvasRenderingContext2D.prototype.isPointInStroke", | |
"globalThis.CanvasRenderingContext2D.prototype.measureText", | |
"globalThis.CanvasRenderingContext2D.prototype.putImageData", | |
"globalThis.CanvasRenderingContext2D.prototype.reset", | |
"globalThis.CanvasRenderingContext2D.prototype.roundRect", | |
"globalThis.CanvasRenderingContext2D.prototype.save", | |
"globalThis.CanvasRenderingContext2D.prototype.scale", | |
"globalThis.CanvasRenderingContext2D.prototype.setLineDash", | |
"globalThis.CanvasRenderingContext2D.prototype.setTransform", | |
"globalThis.CanvasRenderingContext2D.prototype.stroke", | |
"globalThis.CanvasRenderingContext2D.prototype.strokeText", | |
"globalThis.CanvasRenderingContext2D.prototype.transform", | |
"globalThis.CanvasRenderingContext2D.prototype.translate", | |
"globalThis.CanvasRenderingContext2D.prototype.arc", | |
"globalThis.CanvasRenderingContext2D.prototype.arcTo", | |
"globalThis.CanvasRenderingContext2D.prototype.beginPath", | |
"globalThis.CanvasRenderingContext2D.prototype.bezierCurveTo", | |
"globalThis.CanvasRenderingContext2D.prototype.clearRect", | |
"globalThis.CanvasRenderingContext2D.prototype.closePath", | |
"globalThis.CanvasRenderingContext2D.prototype.ellipse", | |
"globalThis.CanvasRenderingContext2D.prototype.fillRect", | |
"globalThis.CanvasRenderingContext2D.prototype.lineTo", | |
"globalThis.CanvasRenderingContext2D.prototype.moveTo", | |
"globalThis.CanvasRenderingContext2D.prototype.quadraticCurveTo", | |
"globalThis.CanvasRenderingContext2D.prototype.rect", | |
"globalThis.CanvasRenderingContext2D.prototype.resetTransform", | |
"globalThis.CanvasRenderingContext2D.prototype.restore", | |
"globalThis.CanvasRenderingContext2D.prototype.rotate", | |
"globalThis.CanvasRenderingContext2D.prototype.strokeRect", | |
"globalThis.CanvasRenderingContext2D.prototype.beginLayer", | |
"globalThis.CanvasRenderingContext2D.prototype.drawFormattedText", | |
"globalThis.CanvasRenderingContext2D.prototype.scrollPathIntoView", | |
"globalThis.CanvasRenderingContext2D.prototype.endLayer", | |
"globalThis.CanvasRenderingContext2D.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CanvasPattern", | |
"globalThis.CanvasPattern.prototype.setTransform", | |
"globalThis.CanvasPattern.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CanvasGradient", | |
"globalThis.CanvasGradient.prototype.addColorStop", | |
"globalThis.CanvasGradient.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CanvasCaptureMediaStreamTrack", | |
"globalThis.CanvasCaptureMediaStreamTrack.prototype.canvas", | |
"globalThis.CanvasCaptureMediaStreamTrack.prototype.requestFrame", | |
"globalThis.CanvasCaptureMediaStreamTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSVariableReferenceValue", | |
"globalThis.CSSVariableReferenceValue.prototype.variable", | |
"globalThis.CSSVariableReferenceValue.prototype.fallback", | |
"globalThis.CSSVariableReferenceValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSUnparsedValue", | |
"globalThis.CSSUnparsedValue.prototype.entries", | |
"globalThis.CSSUnparsedValue.prototype.keys", | |
"globalThis.CSSUnparsedValue.prototype.values", | |
"globalThis.CSSUnparsedValue.prototype.forEach", | |
"globalThis.CSSUnparsedValue.prototype.length", | |
"globalThis.CSSUnparsedValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSUnparsedValue.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CSSUnitValue", | |
"globalThis.CSSUnitValue.prototype.value", | |
"globalThis.CSSUnitValue.prototype.unit", | |
"globalThis.CSSUnitValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSTranslate", | |
"globalThis.CSSTranslate.prototype.x", | |
"globalThis.CSSTranslate.prototype.y", | |
"globalThis.CSSTranslate.prototype.z", | |
"globalThis.CSSTranslate.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSTransformValue", | |
"globalThis.CSSTransformValue.prototype.entries", | |
"globalThis.CSSTransformValue.prototype.keys", | |
"globalThis.CSSTransformValue.prototype.values", | |
"globalThis.CSSTransformValue.prototype.forEach", | |
"globalThis.CSSTransformValue.prototype.length", | |
"globalThis.CSSTransformValue.prototype.is2D", | |
"globalThis.CSSTransformValue.prototype.toMatrix", | |
"globalThis.CSSTransformValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSTransformValue.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CSSTransformComponent", | |
"globalThis.CSSTransformComponent.prototype.is2D", | |
"globalThis.CSSTransformComponent.prototype.toMatrix", | |
"globalThis.CSSTransformComponent.prototype.toString", | |
"globalThis.CSSTransformComponent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSSupportsRule", | |
"globalThis.CSSSupportsRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSStyleValue", | |
"globalThis.CSSStyleValue.prototype.toString", | |
"globalThis.CSSStyleValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSStyleValue.parse", | |
"globalThis.CSSStyleValue.parseAll", | |
"globalThis.CSSStyleSheet", | |
"globalThis.CSSStyleSheet.prototype.ownerRule", | |
"globalThis.CSSStyleSheet.prototype.cssRules", | |
"globalThis.CSSStyleSheet.prototype.rules", | |
"globalThis.CSSStyleSheet.prototype.addRule", | |
"globalThis.CSSStyleSheet.prototype.deleteRule", | |
"globalThis.CSSStyleSheet.prototype.insertRule", | |
"globalThis.CSSStyleSheet.prototype.removeRule", | |
"globalThis.CSSStyleSheet.prototype.replace", | |
"globalThis.CSSStyleSheet.prototype.replaceSync", | |
"globalThis.CSSStyleSheet.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSStyleRule", | |
"globalThis.CSSStyleRule.prototype.selectorText", | |
"globalThis.CSSStyleRule.prototype.style", | |
"globalThis.CSSStyleRule.prototype.styleMap", | |
"globalThis.CSSStyleRule.prototype.cssRules", | |
"globalThis.CSSStyleRule.prototype.deleteRule", | |
"globalThis.CSSStyleRule.prototype.insertRule", | |
"globalThis.CSSStyleRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSStyleDeclaration", | |
"globalThis.CSSStyleDeclaration.prototype.cssText", | |
"globalThis.CSSStyleDeclaration.prototype.length", | |
"globalThis.CSSStyleDeclaration.prototype.parentRule", | |
"globalThis.CSSStyleDeclaration.prototype.cssFloat", | |
"globalThis.CSSStyleDeclaration.prototype.getPropertyPriority", | |
"globalThis.CSSStyleDeclaration.prototype.getPropertyValue", | |
"globalThis.CSSStyleDeclaration.prototype.item", | |
"globalThis.CSSStyleDeclaration.prototype.removeProperty", | |
"globalThis.CSSStyleDeclaration.prototype.setProperty", | |
"globalThis.CSSStyleDeclaration.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSStyleDeclaration.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CSSSkewY", | |
"globalThis.CSSSkewY.prototype.ay", | |
"globalThis.CSSSkewY.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSSkewX", | |
"globalThis.CSSSkewX.prototype.ax", | |
"globalThis.CSSSkewX.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSSkew", | |
"globalThis.CSSSkew.prototype.ax", | |
"globalThis.CSSSkew.prototype.ay", | |
"globalThis.CSSSkew.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSScale", | |
"globalThis.CSSScale.prototype.x", | |
"globalThis.CSSScale.prototype.y", | |
"globalThis.CSSScale.prototype.z", | |
"globalThis.CSSScale.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSRuleList", | |
"globalThis.CSSRuleList.prototype.length", | |
"globalThis.CSSRuleList.prototype.item", | |
"globalThis.CSSRuleList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSRuleList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CSSRule", | |
"globalThis.CSSRule.prototype.type", | |
"globalThis.CSSRule.prototype.cssText", | |
"globalThis.CSSRule.prototype.parentRule", | |
"globalThis.CSSRule.prototype.parentStyleSheet", | |
"globalThis.CSSRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSRotate", | |
"globalThis.CSSRotate.prototype.angle", | |
"globalThis.CSSRotate.prototype.x", | |
"globalThis.CSSRotate.prototype.y", | |
"globalThis.CSSRotate.prototype.z", | |
"globalThis.CSSRotate.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSPropertyRule", | |
"globalThis.CSSPropertyRule.prototype.name", | |
"globalThis.CSSPropertyRule.prototype.syntax", | |
"globalThis.CSSPropertyRule.prototype.inherits", | |
"globalThis.CSSPropertyRule.prototype.initialValue", | |
"globalThis.CSSPropertyRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSPositionValue", | |
"globalThis.CSSPositionValue.prototype.x", | |
"globalThis.CSSPositionValue.prototype.y", | |
"globalThis.CSSPositionValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSPerspective", | |
"globalThis.CSSPerspective.prototype.length", | |
"globalThis.CSSPerspective.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSPageRule", | |
"globalThis.CSSPageRule.prototype.selectorText", | |
"globalThis.CSSPageRule.prototype.style", | |
"globalThis.CSSPageRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSNumericValue", | |
"globalThis.CSSNumericValue.prototype.add", | |
"globalThis.CSSNumericValue.prototype.div", | |
"globalThis.CSSNumericValue.prototype.equals", | |
"globalThis.CSSNumericValue.prototype.max", | |
"globalThis.CSSNumericValue.prototype.min", | |
"globalThis.CSSNumericValue.prototype.mul", | |
"globalThis.CSSNumericValue.prototype.sub", | |
"globalThis.CSSNumericValue.prototype.to", | |
"globalThis.CSSNumericValue.prototype.toSum", | |
"globalThis.CSSNumericValue.prototype.type", | |
"globalThis.CSSNumericValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSNumericValue.parse", | |
"globalThis.CSSNumericArray", | |
"globalThis.CSSNumericArray.prototype.entries", | |
"globalThis.CSSNumericArray.prototype.keys", | |
"globalThis.CSSNumericArray.prototype.values", | |
"globalThis.CSSNumericArray.prototype.forEach", | |
"globalThis.CSSNumericArray.prototype.length", | |
"globalThis.CSSNumericArray.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSNumericArray.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CSSNamespaceRule", | |
"globalThis.CSSNamespaceRule.prototype.namespaceURI", | |
"globalThis.CSSNamespaceRule.prototype.prefix", | |
"globalThis.CSSNamespaceRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMediaRule", | |
"globalThis.CSSMediaRule.prototype.media", | |
"globalThis.CSSMediaRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMatrixComponent", | |
"globalThis.CSSMatrixComponent.prototype.matrix", | |
"globalThis.CSSMatrixComponent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathValue", | |
"globalThis.CSSMathValue.prototype.operator", | |
"globalThis.CSSMathValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathSum", | |
"globalThis.CSSMathSum.prototype.values", | |
"globalThis.CSSMathSum.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathProduct", | |
"globalThis.CSSMathProduct.prototype.values", | |
"globalThis.CSSMathProduct.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathNegate", | |
"globalThis.CSSMathNegate.prototype.value", | |
"globalThis.CSSMathNegate.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathMin", | |
"globalThis.CSSMathMin.prototype.values", | |
"globalThis.CSSMathMin.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathMax", | |
"globalThis.CSSMathMax.prototype.values", | |
"globalThis.CSSMathMax.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathInvert", | |
"globalThis.CSSMathInvert.prototype.value", | |
"globalThis.CSSMathInvert.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSMathClamp", | |
"globalThis.CSSMathClamp.prototype.lower", | |
"globalThis.CSSMathClamp.prototype.value", | |
"globalThis.CSSMathClamp.prototype.upper", | |
"globalThis.CSSMathClamp.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSLayerStatementRule", | |
"globalThis.CSSLayerStatementRule.prototype.nameList", | |
"globalThis.CSSLayerStatementRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSLayerBlockRule", | |
"globalThis.CSSLayerBlockRule.prototype.name", | |
"globalThis.CSSLayerBlockRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSKeywordValue", | |
"globalThis.CSSKeywordValue.prototype.value", | |
"globalThis.CSSKeywordValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSKeyframesRule", | |
"globalThis.CSSKeyframesRule.prototype.name", | |
"globalThis.CSSKeyframesRule.prototype.cssRules", | |
"globalThis.CSSKeyframesRule.prototype.appendRule", | |
"globalThis.CSSKeyframesRule.prototype.deleteRule", | |
"globalThis.CSSKeyframesRule.prototype.findRule", | |
"globalThis.CSSKeyframesRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSKeyframesRule.prototype.Symbol(Symbol.iterator)", | |
"globalThis.CSSKeyframeRule", | |
"globalThis.CSSKeyframeRule.prototype.keyText", | |
"globalThis.CSSKeyframeRule.prototype.style", | |
"globalThis.CSSKeyframeRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSImportRule", | |
"globalThis.CSSImportRule.prototype.href", | |
"globalThis.CSSImportRule.prototype.media", | |
"globalThis.CSSImportRule.prototype.styleSheet", | |
"globalThis.CSSImportRule.prototype.layerName", | |
"globalThis.CSSImportRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSImageValue", | |
"globalThis.CSSImageValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSGroupingRule", | |
"globalThis.CSSGroupingRule.prototype.cssRules", | |
"globalThis.CSSGroupingRule.prototype.deleteRule", | |
"globalThis.CSSGroupingRule.prototype.insertRule", | |
"globalThis.CSSGroupingRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSFontPaletteValuesRule", | |
"globalThis.CSSFontPaletteValuesRule.prototype.name", | |
"globalThis.CSSFontPaletteValuesRule.prototype.fontFamily", | |
"globalThis.CSSFontPaletteValuesRule.prototype.basePalette", | |
"globalThis.CSSFontPaletteValuesRule.prototype.overrideColors", | |
"globalThis.CSSFontPaletteValuesRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSFontFaceRule", | |
"globalThis.CSSFontFaceRule.prototype.style", | |
"globalThis.CSSFontFaceRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSCounterStyleRule", | |
"globalThis.CSSCounterStyleRule.prototype.name", | |
"globalThis.CSSCounterStyleRule.prototype.system", | |
"globalThis.CSSCounterStyleRule.prototype.symbols", | |
"globalThis.CSSCounterStyleRule.prototype.additiveSymbols", | |
"globalThis.CSSCounterStyleRule.prototype.negative", | |
"globalThis.CSSCounterStyleRule.prototype.prefix", | |
"globalThis.CSSCounterStyleRule.prototype.suffix", | |
"globalThis.CSSCounterStyleRule.prototype.range", | |
"globalThis.CSSCounterStyleRule.prototype.pad", | |
"globalThis.CSSCounterStyleRule.prototype.speakAs", | |
"globalThis.CSSCounterStyleRule.prototype.fallback", | |
"globalThis.CSSCounterStyleRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSContainerRule", | |
"globalThis.CSSContainerRule.prototype.containerName", | |
"globalThis.CSSContainerRule.prototype.containerQuery", | |
"globalThis.CSSContainerRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSConditionRule", | |
"globalThis.CSSConditionRule.prototype.conditionText", | |
"globalThis.CSSConditionRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSS", | |
"globalThis.CSS.Hz", | |
"globalThis.CSS.Q", | |
"globalThis.CSS.ch", | |
"globalThis.CSS.cm", | |
"globalThis.CSS.cqb", | |
"globalThis.CSS.cqh", | |
"globalThis.CSS.cqi", | |
"globalThis.CSS.cqmax", | |
"globalThis.CSS.cqmin", | |
"globalThis.CSS.cqw", | |
"globalThis.CSS.deg", | |
"globalThis.CSS.dpcm", | |
"globalThis.CSS.dpi", | |
"globalThis.CSS.dppx", | |
"globalThis.CSS.em", | |
"globalThis.CSS.escape", | |
"globalThis.CSS.ex", | |
"globalThis.CSS.fr", | |
"globalThis.CSS.grad", | |
"globalThis.CSS.in", | |
"globalThis.CSS.kHz", | |
"globalThis.CSS.mm", | |
"globalThis.CSS.ms", | |
"globalThis.CSS.number", | |
"globalThis.CSS.pc", | |
"globalThis.CSS.percent", | |
"globalThis.CSS.pt", | |
"globalThis.CSS.px", | |
"globalThis.CSS.rad", | |
"globalThis.CSS.registerProperty", | |
"globalThis.CSS.rem", | |
"globalThis.CSS.s", | |
"globalThis.CSS.supports", | |
"globalThis.CSS.turn", | |
"globalThis.CSS.vh", | |
"globalThis.CSS.vmax", | |
"globalThis.CSS.vmin", | |
"globalThis.CSS.vw", | |
"globalThis.CSS.highlights", | |
"globalThis.CSS.cap", | |
"globalThis.CSS.rcap", | |
"globalThis.CSS.dvb", | |
"globalThis.CSS.dvh", | |
"globalThis.CSS.dvi", | |
"globalThis.CSS.dvmax", | |
"globalThis.CSS.dvmin", | |
"globalThis.CSS.dvw", | |
"globalThis.CSS.lvb", | |
"globalThis.CSS.lvh", | |
"globalThis.CSS.lvi", | |
"globalThis.CSS.lvmax", | |
"globalThis.CSS.lvmin", | |
"globalThis.CSS.lvw", | |
"globalThis.CSS.svb", | |
"globalThis.CSS.svh", | |
"globalThis.CSS.svi", | |
"globalThis.CSS.svmax", | |
"globalThis.CSS.svmin", | |
"globalThis.CSS.svw", | |
"globalThis.CSS.vb", | |
"globalThis.CSS.vi", | |
"globalThis.CSS.ic", | |
"globalThis.CSS.lh", | |
"globalThis.CSS.rch", | |
"globalThis.CSS.rex", | |
"globalThis.CSS.ric", | |
"globalThis.CSS.rlh", | |
"globalThis.CSS.x", | |
"globalThis.CSS.Symbol(Symbol.toStringTag)", | |
"globalThis.CDATASection", | |
"globalThis.CDATASection.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ByteLengthQueuingStrategy", | |
"globalThis.ByteLengthQueuingStrategy.prototype.highWaterMark", | |
"globalThis.ByteLengthQueuingStrategy.prototype.size", | |
"globalThis.ByteLengthQueuingStrategy.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BroadcastChannel", | |
"globalThis.BroadcastChannel.prototype.name", | |
"globalThis.BroadcastChannel.prototype.onmessage", | |
"globalThis.BroadcastChannel.prototype.onmessageerror", | |
"globalThis.BroadcastChannel.prototype.close", | |
"globalThis.BroadcastChannel.prototype.postMessage", | |
"globalThis.BroadcastChannel.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BlobEvent", | |
"globalThis.BlobEvent.prototype.data", | |
"globalThis.BlobEvent.prototype.timecode", | |
"globalThis.BlobEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Blob", | |
"globalThis.Blob.prototype.size", | |
"globalThis.Blob.prototype.type", | |
"globalThis.Blob.prototype.arrayBuffer", | |
"globalThis.Blob.prototype.slice", | |
"globalThis.Blob.prototype.stream", | |
"globalThis.Blob.prototype.text", | |
"globalThis.Blob.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BiquadFilterNode", | |
"globalThis.BiquadFilterNode.prototype.type", | |
"globalThis.BiquadFilterNode.prototype.frequency", | |
"globalThis.BiquadFilterNode.prototype.detune", | |
"globalThis.BiquadFilterNode.prototype.Q", | |
"globalThis.BiquadFilterNode.prototype.gain", | |
"globalThis.BiquadFilterNode.prototype.getFrequencyResponse", | |
"globalThis.BiquadFilterNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BeforeUnloadEvent", | |
"globalThis.BeforeUnloadEvent.prototype.returnValue", | |
"globalThis.BeforeUnloadEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BeforeInstallPromptEvent", | |
"globalThis.BeforeInstallPromptEvent.prototype.platforms", | |
"globalThis.BeforeInstallPromptEvent.prototype.userChoice", | |
"globalThis.BeforeInstallPromptEvent.prototype.prompt", | |
"globalThis.BeforeInstallPromptEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BaseAudioContext", | |
"globalThis.BaseAudioContext.prototype.destination", | |
"globalThis.BaseAudioContext.prototype.currentTime", | |
"globalThis.BaseAudioContext.prototype.sampleRate", | |
"globalThis.BaseAudioContext.prototype.listener", | |
"globalThis.BaseAudioContext.prototype.state", | |
"globalThis.BaseAudioContext.prototype.onstatechange", | |
"globalThis.BaseAudioContext.prototype.createAnalyser", | |
"globalThis.BaseAudioContext.prototype.createBiquadFilter", | |
"globalThis.BaseAudioContext.prototype.createBuffer", | |
"globalThis.BaseAudioContext.prototype.createBufferSource", | |
"globalThis.BaseAudioContext.prototype.createChannelMerger", | |
"globalThis.BaseAudioContext.prototype.createChannelSplitter", | |
"globalThis.BaseAudioContext.prototype.createConstantSource", | |
"globalThis.BaseAudioContext.prototype.createConvolver", | |
"globalThis.BaseAudioContext.prototype.createDelay", | |
"globalThis.BaseAudioContext.prototype.createDynamicsCompressor", | |
"globalThis.BaseAudioContext.prototype.createGain", | |
"globalThis.BaseAudioContext.prototype.createIIRFilter", | |
"globalThis.BaseAudioContext.prototype.createOscillator", | |
"globalThis.BaseAudioContext.prototype.createPanner", | |
"globalThis.BaseAudioContext.prototype.createPeriodicWave", | |
"globalThis.BaseAudioContext.prototype.createScriptProcessor", | |
"globalThis.BaseAudioContext.prototype.createStereoPanner", | |
"globalThis.BaseAudioContext.prototype.createWaveShaper", | |
"globalThis.BaseAudioContext.prototype.decodeAudioData", | |
"globalThis.BaseAudioContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BarProp", | |
"globalThis.BarProp.prototype.visible", | |
"globalThis.BarProp.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioWorkletNode", | |
"globalThis.AudioWorkletNode.prototype.parameters", | |
"globalThis.AudioWorkletNode.prototype.port", | |
"globalThis.AudioWorkletNode.prototype.onprocessorerror", | |
"globalThis.AudioWorkletNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioSinkInfo", | |
"globalThis.AudioSinkInfo.prototype.type", | |
"globalThis.AudioSinkInfo.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioScheduledSourceNode", | |
"globalThis.AudioScheduledSourceNode.prototype.onended", | |
"globalThis.AudioScheduledSourceNode.prototype.start", | |
"globalThis.AudioScheduledSourceNode.prototype.stop", | |
"globalThis.AudioScheduledSourceNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioProcessingEvent", | |
"globalThis.AudioProcessingEvent.prototype.playbackTime", | |
"globalThis.AudioProcessingEvent.prototype.inputBuffer", | |
"globalThis.AudioProcessingEvent.prototype.outputBuffer", | |
"globalThis.AudioProcessingEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioParamMap", | |
"globalThis.AudioParamMap.prototype.size", | |
"globalThis.AudioParamMap.prototype.entries", | |
"globalThis.AudioParamMap.prototype.forEach", | |
"globalThis.AudioParamMap.prototype.get", | |
"globalThis.AudioParamMap.prototype.has", | |
"globalThis.AudioParamMap.prototype.keys", | |
"globalThis.AudioParamMap.prototype.values", | |
"globalThis.AudioParamMap.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioParamMap.prototype.Symbol(Symbol.iterator)", | |
"globalThis.AudioParam", | |
"globalThis.AudioParam.prototype.value", | |
"globalThis.AudioParam.prototype.automationRate", | |
"globalThis.AudioParam.prototype.defaultValue", | |
"globalThis.AudioParam.prototype.minValue", | |
"globalThis.AudioParam.prototype.maxValue", | |
"globalThis.AudioParam.prototype.cancelAndHoldAtTime", | |
"globalThis.AudioParam.prototype.cancelScheduledValues", | |
"globalThis.AudioParam.prototype.exponentialRampToValueAtTime", | |
"globalThis.AudioParam.prototype.linearRampToValueAtTime", | |
"globalThis.AudioParam.prototype.setTargetAtTime", | |
"globalThis.AudioParam.prototype.setValueAtTime", | |
"globalThis.AudioParam.prototype.setValueCurveAtTime", | |
"globalThis.AudioParam.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioNode", | |
"globalThis.AudioNode.prototype.context", | |
"globalThis.AudioNode.prototype.numberOfInputs", | |
"globalThis.AudioNode.prototype.numberOfOutputs", | |
"globalThis.AudioNode.prototype.channelCount", | |
"globalThis.AudioNode.prototype.channelCountMode", | |
"globalThis.AudioNode.prototype.channelInterpretation", | |
"globalThis.AudioNode.prototype.connect", | |
"globalThis.AudioNode.prototype.disconnect", | |
"globalThis.AudioNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioListener", | |
"globalThis.AudioListener.prototype.positionX", | |
"globalThis.AudioListener.prototype.positionY", | |
"globalThis.AudioListener.prototype.positionZ", | |
"globalThis.AudioListener.prototype.forwardX", | |
"globalThis.AudioListener.prototype.forwardY", | |
"globalThis.AudioListener.prototype.forwardZ", | |
"globalThis.AudioListener.prototype.upX", | |
"globalThis.AudioListener.prototype.upY", | |
"globalThis.AudioListener.prototype.upZ", | |
"globalThis.AudioListener.prototype.setOrientation", | |
"globalThis.AudioListener.prototype.setPosition", | |
"globalThis.AudioListener.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioDestinationNode", | |
"globalThis.AudioDestinationNode.prototype.maxChannelCount", | |
"globalThis.AudioDestinationNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioData", | |
"globalThis.AudioData.prototype.format", | |
"globalThis.AudioData.prototype.sampleRate", | |
"globalThis.AudioData.prototype.numberOfFrames", | |
"globalThis.AudioData.prototype.numberOfChannels", | |
"globalThis.AudioData.prototype.duration", | |
"globalThis.AudioData.prototype.timestamp", | |
"globalThis.AudioData.prototype.allocationSize", | |
"globalThis.AudioData.prototype.clone", | |
"globalThis.AudioData.prototype.close", | |
"globalThis.AudioData.prototype.copyTo", | |
"globalThis.AudioData.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioContext", | |
"globalThis.AudioContext.prototype.baseLatency", | |
"globalThis.AudioContext.prototype.outputLatency", | |
"globalThis.AudioContext.prototype.close", | |
"globalThis.AudioContext.prototype.createMediaElementSource", | |
"globalThis.AudioContext.prototype.createMediaStreamDestination", | |
"globalThis.AudioContext.prototype.createMediaStreamSource", | |
"globalThis.AudioContext.prototype.getOutputTimestamp", | |
"globalThis.AudioContext.prototype.resume", | |
"globalThis.AudioContext.prototype.suspend", | |
"globalThis.AudioContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioBufferSourceNode", | |
"globalThis.AudioBufferSourceNode.prototype.buffer", | |
"globalThis.AudioBufferSourceNode.prototype.playbackRate", | |
"globalThis.AudioBufferSourceNode.prototype.detune", | |
"globalThis.AudioBufferSourceNode.prototype.loop", | |
"globalThis.AudioBufferSourceNode.prototype.loopStart", | |
"globalThis.AudioBufferSourceNode.prototype.loopEnd", | |
"globalThis.AudioBufferSourceNode.prototype.start", | |
"globalThis.AudioBufferSourceNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioBuffer", | |
"globalThis.AudioBuffer.prototype.length", | |
"globalThis.AudioBuffer.prototype.duration", | |
"globalThis.AudioBuffer.prototype.sampleRate", | |
"globalThis.AudioBuffer.prototype.numberOfChannels", | |
"globalThis.AudioBuffer.prototype.copyFromChannel", | |
"globalThis.AudioBuffer.prototype.copyToChannel", | |
"globalThis.AudioBuffer.prototype.getChannelData", | |
"globalThis.AudioBuffer.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Attr", | |
"globalThis.Attr.prototype.namespaceURI", | |
"globalThis.Attr.prototype.prefix", | |
"globalThis.Attr.prototype.localName", | |
"globalThis.Attr.prototype.name", | |
"globalThis.Attr.prototype.value", | |
"globalThis.Attr.prototype.ownerElement", | |
"globalThis.Attr.prototype.specified", | |
"globalThis.Attr.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AnimationEvent", | |
"globalThis.AnimationEvent.prototype.animationName", | |
"globalThis.AnimationEvent.prototype.elapsedTime", | |
"globalThis.AnimationEvent.prototype.pseudoElement", | |
"globalThis.AnimationEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AnimationEffect", | |
"globalThis.AnimationEffect.prototype.getComputedTiming", | |
"globalThis.AnimationEffect.prototype.getTiming", | |
"globalThis.AnimationEffect.prototype.updateTiming", | |
"globalThis.AnimationEffect.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Animation", | |
"globalThis.Animation.prototype.effect", | |
"globalThis.Animation.prototype.startTime", | |
"globalThis.Animation.prototype.currentTime", | |
"globalThis.Animation.prototype.playbackRate", | |
"globalThis.Animation.prototype.playState", | |
"globalThis.Animation.prototype.pending", | |
"globalThis.Animation.prototype.id", | |
"globalThis.Animation.prototype.onfinish", | |
"globalThis.Animation.prototype.oncancel", | |
"globalThis.Animation.prototype.cancel", | |
"globalThis.Animation.prototype.finish", | |
"globalThis.Animation.prototype.pause", | |
"globalThis.Animation.prototype.play", | |
"globalThis.Animation.prototype.reverse", | |
"globalThis.Animation.prototype.updatePlaybackRate", | |
"globalThis.Animation.prototype.timeline", | |
"globalThis.Animation.prototype.replaceState", | |
"globalThis.Animation.prototype.onremove", | |
"globalThis.Animation.prototype.finished", | |
"globalThis.Animation.prototype.ready", | |
"globalThis.Animation.prototype.rangeStart", | |
"globalThis.Animation.prototype.rangeEnd", | |
"globalThis.Animation.prototype.commitStyles", | |
"globalThis.Animation.prototype.persist", | |
"globalThis.Animation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AnalyserNode", | |
"globalThis.AnalyserNode.prototype.fftSize", | |
"globalThis.AnalyserNode.prototype.frequencyBinCount", | |
"globalThis.AnalyserNode.prototype.minDecibels", | |
"globalThis.AnalyserNode.prototype.maxDecibels", | |
"globalThis.AnalyserNode.prototype.smoothingTimeConstant", | |
"globalThis.AnalyserNode.prototype.getByteFrequencyData", | |
"globalThis.AnalyserNode.prototype.getByteTimeDomainData", | |
"globalThis.AnalyserNode.prototype.getFloatFrequencyData", | |
"globalThis.AnalyserNode.prototype.getFloatTimeDomainData", | |
"globalThis.AnalyserNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AbstractRange", | |
"globalThis.AbstractRange.prototype.startContainer", | |
"globalThis.AbstractRange.prototype.startOffset", | |
"globalThis.AbstractRange.prototype.endContainer", | |
"globalThis.AbstractRange.prototype.endOffset", | |
"globalThis.AbstractRange.prototype.collapsed", | |
"globalThis.AbstractRange.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AbortSignal", | |
"globalThis.AbortSignal.prototype.aborted", | |
"globalThis.AbortSignal.prototype.reason", | |
"globalThis.AbortSignal.prototype.onabort", | |
"globalThis.AbortSignal.prototype.throwIfAborted", | |
"globalThis.AbortSignal.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AbortSignal.abort", | |
"globalThis.AbortSignal.timeout", | |
"globalThis.AbortSignal.any", | |
"globalThis.AbortController", | |
"globalThis.AbortController.prototype.signal", | |
"globalThis.AbortController.prototype.abort", | |
"globalThis.AbortController.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.self", | |
"globalThis.name", | |
"globalThis.customElements", | |
"globalThis.history", | |
"globalThis.navigation", | |
"globalThis.locationbar", | |
"globalThis.menubar", | |
"globalThis.personalbar", | |
"globalThis.scrollbars", | |
"globalThis.statusbar", | |
"globalThis.toolbar", | |
"globalThis.status", | |
"globalThis.closed", | |
"globalThis.frames", | |
"globalThis.length", | |
"globalThis.opener", | |
"globalThis.parent", | |
"globalThis.frameElement", | |
"globalThis.navigator", | |
"globalThis.origin", | |
"globalThis.external", | |
"globalThis.screen", | |
"globalThis.innerWidth", | |
"globalThis.innerHeight", | |
"globalThis.scrollX", | |
"globalThis.pageXOffset", | |
"globalThis.scrollY", | |
"globalThis.pageYOffset", | |
"globalThis.visualViewport", | |
"globalThis.screenX", | |
"globalThis.screenY", | |
"globalThis.outerWidth", | |
"globalThis.outerHeight", | |
"globalThis.devicePixelRatio", | |
"globalThis.event", | |
"globalThis.clientInformation", | |
"globalThis.offscreenBuffering", | |
"globalThis.screenLeft", | |
"globalThis.screenTop", | |
"globalThis.styleMedia", | |
"globalThis.onsearch", | |
"globalThis.isSecureContext", | |
"globalThis.trustedTypes", | |
"globalThis.performance", | |
"globalThis.onappinstalled", | |
"globalThis.onbeforeinstallprompt", | |
"globalThis.crypto", | |
"globalThis.indexedDB", | |
"globalThis.sessionStorage", | |
"globalThis.localStorage", | |
"globalThis.onbeforexrselect", | |
"globalThis.onabort", | |
"globalThis.onbeforeinput", | |
"globalThis.onbeforetoggle", | |
"globalThis.onblur", | |
"globalThis.oncancel", | |
"globalThis.oncanplay", | |
"globalThis.oncanplaythrough", | |
"globalThis.onchange", | |
"globalThis.onclick", | |
"globalThis.onclose", | |
"globalThis.oncontextlost", | |
"globalThis.oncontextmenu", | |
"globalThis.oncontextrestored", | |
"globalThis.oncuechange", | |
"globalThis.ondblclick", | |
"globalThis.ondrag", | |
"globalThis.ondragend", | |
"globalThis.ondragenter", | |
"globalThis.ondragleave", | |
"globalThis.ondragover", | |
"globalThis.ondragstart", | |
"globalThis.ondrop", | |
"globalThis.ondurationchange", | |
"globalThis.onemptied", | |
"globalThis.onended", | |
"globalThis.onerror", | |
"globalThis.onfocus", | |
"globalThis.onformdata", | |
"globalThis.oninput", | |
"globalThis.oninvalid", | |
"globalThis.onkeydown", | |
"globalThis.onkeypress", | |
"globalThis.onkeyup", | |
"globalThis.onload", | |
"globalThis.onloadeddata", | |
"globalThis.onloadedmetadata", | |
"globalThis.onloadstart", | |
"globalThis.onmousedown", | |
"globalThis.onmouseenter", | |
"globalThis.onmouseleave", | |
"globalThis.onmousemove", | |
"globalThis.onmouseout", | |
"globalThis.onmouseover", | |
"globalThis.onmouseup", | |
"globalThis.onmousewheel", | |
"globalThis.onpause", | |
"globalThis.onplay", | |
"globalThis.onplaying", | |
"globalThis.onprogress", | |
"globalThis.onratechange", | |
"globalThis.onreset", | |
"globalThis.onresize", | |
"globalThis.onscroll", | |
"globalThis.onsecuritypolicyviolation", | |
"globalThis.onseeked", | |
"globalThis.onseeking", | |
"globalThis.onselect", | |
"globalThis.onslotchange", | |
"globalThis.onstalled", | |
"globalThis.onsubmit", | |
"globalThis.onsuspend", | |
"globalThis.ontimeupdate", | |
"globalThis.ontoggle", | |
"globalThis.onvolumechange", | |
"globalThis.onwaiting", | |
"globalThis.onwebkitanimationend", | |
"globalThis.onwebkitanimationiteration", | |
"globalThis.onwebkitanimationstart", | |
"globalThis.onwebkittransitionend", | |
"globalThis.onwheel", | |
"globalThis.onauxclick", | |
"globalThis.ongotpointercapture", | |
"globalThis.onlostpointercapture", | |
"globalThis.onpointerdown", | |
"globalThis.onpointermove", | |
"globalThis.onpointerrawupdate", | |
"globalThis.onpointerup", | |
"globalThis.onpointercancel", | |
"globalThis.onpointerover", | |
"globalThis.onpointerout", | |
"globalThis.onpointerenter", | |
"globalThis.onpointerleave", | |
"globalThis.onselectstart", | |
"globalThis.onselectionchange", | |
"globalThis.onanimationend", | |
"globalThis.onanimationiteration", | |
"globalThis.onanimationstart", | |
"globalThis.ontransitionrun", | |
"globalThis.ontransitionstart", | |
"globalThis.ontransitionend", | |
"globalThis.ontransitioncancel", | |
"globalThis.onafterprint", | |
"globalThis.onbeforeprint", | |
"globalThis.onbeforeunload", | |
"globalThis.onhashchange", | |
"globalThis.onlanguagechange", | |
"globalThis.onmessage", | |
"globalThis.onmessageerror", | |
"globalThis.onoffline", | |
"globalThis.ononline", | |
"globalThis.onpagehide", | |
"globalThis.onpageshow", | |
"globalThis.onpopstate", | |
"globalThis.onrejectionhandled", | |
"globalThis.onstorage", | |
"globalThis.onunhandledrejection", | |
"globalThis.onunload", | |
"globalThis.crossOriginIsolated", | |
"globalThis.scheduler", | |
"globalThis.alert", | |
"globalThis.atob", | |
"globalThis.blur", | |
"globalThis.btoa", | |
"globalThis.cancelAnimationFrame", | |
"globalThis.cancelIdleCallback", | |
"globalThis.captureEvents", | |
"globalThis.clearInterval", | |
"globalThis.clearTimeout", | |
"globalThis.close", | |
"globalThis.confirm", | |
"globalThis.createImageBitmap", | |
"globalThis.fetch", | |
"globalThis.find", | |
"globalThis.focus", | |
"globalThis.getComputedStyle", | |
"globalThis.getSelection", | |
"globalThis.matchMedia", | |
"globalThis.moveBy", | |
"globalThis.moveTo", | |
"globalThis.open", | |
"globalThis.postMessage", | |
"globalThis.print", | |
"globalThis.prompt", | |
"globalThis.queueMicrotask", | |
"globalThis.releaseEvents", | |
"globalThis.reportError", | |
"globalThis.requestAnimationFrame", | |
"globalThis.requestIdleCallback", | |
"globalThis.resizeBy", | |
"globalThis.resizeTo", | |
"globalThis.scroll", | |
"globalThis.scrollBy", | |
"globalThis.scrollTo", | |
"globalThis.setInterval", | |
"globalThis.setTimeout", | |
"globalThis.stop", | |
"globalThis.structuredClone", | |
"globalThis.webkitCancelAnimationFrame", | |
"globalThis.webkitRequestAnimationFrame", | |
"globalThis.chrome", | |
"globalThis.chrome.loadTimes", | |
"globalThis.chrome.loadTimes.prototype", | |
"globalThis.chrome.csi", | |
"globalThis.chrome.csi.prototype", | |
"globalThis.chrome.app", | |
"globalThis.chrome.app.getDetails", | |
"globalThis.chrome.app.getIsInstalled", | |
"globalThis.chrome.app.installState", | |
"globalThis.chrome.app.runningState", | |
"globalThis.chrome.app.InstallState", | |
"globalThis.chrome.app.InstallState.DISABLED", | |
"globalThis.chrome.app.InstallState.INSTALLED", | |
"globalThis.chrome.app.InstallState.NOT_INSTALLED", | |
"globalThis.chrome.app.RunningState", | |
"globalThis.chrome.app.RunningState.CANNOT_RUN", | |
"globalThis.chrome.app.RunningState.READY_TO_RUN", | |
"globalThis.chrome.app.RunningState.RUNNING", | |
"globalThis.WebAssembly", | |
"globalThis.WebAssembly.compile", | |
"globalThis.WebAssembly.validate", | |
"globalThis.WebAssembly.instantiate", | |
"globalThis.WebAssembly.Module", | |
"globalThis.WebAssembly.Module.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.Module.imports", | |
"globalThis.WebAssembly.Module.exports", | |
"globalThis.WebAssembly.Module.customSections", | |
"globalThis.WebAssembly.Instance", | |
"globalThis.WebAssembly.Instance.prototype.exports", | |
"globalThis.WebAssembly.Instance.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.Table", | |
"globalThis.WebAssembly.Table.prototype.length", | |
"globalThis.WebAssembly.Table.prototype.grow", | |
"globalThis.WebAssembly.Table.prototype.set", | |
"globalThis.WebAssembly.Table.prototype.get", | |
"globalThis.WebAssembly.Table.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.Memory", | |
"globalThis.WebAssembly.Memory.prototype.grow", | |
"globalThis.WebAssembly.Memory.prototype.buffer", | |
"globalThis.WebAssembly.Memory.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.Global", | |
"globalThis.WebAssembly.Global.prototype.valueOf", | |
"globalThis.WebAssembly.Global.prototype.value", | |
"globalThis.WebAssembly.Global.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.Tag", | |
"globalThis.WebAssembly.Tag.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.JSTag", | |
"globalThis.WebAssembly.Exception", | |
"globalThis.WebAssembly.Exception.prototype.getArg", | |
"globalThis.WebAssembly.Exception.prototype.is", | |
"globalThis.WebAssembly.Exception.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebAssembly.CompileError", | |
"globalThis.WebAssembly.CompileError.prototype.name", | |
"globalThis.WebAssembly.LinkError", | |
"globalThis.WebAssembly.LinkError.prototype.name", | |
"globalThis.WebAssembly.RuntimeError", | |
"globalThis.WebAssembly.RuntimeError.prototype.name", | |
"globalThis.WebAssembly.compileStreaming", | |
"globalThis.WebAssembly.instantiateStreaming", | |
"globalThis.WebAssembly.String", | |
"globalThis.WebAssembly.String.fromWtf16Array", | |
"globalThis.WebAssembly.String.toWtf16Array", | |
"globalThis.WebAssembly.String.fromWtf8Array", | |
"globalThis.WebAssembly.String.fromCharCode", | |
"globalThis.WebAssembly.String.fromCodePoint", | |
"globalThis.WebAssembly.String.codePointAt", | |
"globalThis.WebAssembly.String.charCodeAt", | |
"globalThis.WebAssembly.String.length", | |
"globalThis.WebAssembly.String.concat", | |
"globalThis.WebAssembly.String.substring", | |
"globalThis.WebAssembly.String.equals", | |
"globalThis.WebAssembly.String.compare", | |
"globalThis.WebAssembly.Symbol(Symbol.toStringTag)", | |
"globalThis.fence", | |
"globalThis.launchQueue", | |
"globalThis.onbeforematch", | |
"globalThis.BackForwardCacheRestoration", | |
"globalThis.BackForwardCacheRestoration.prototype.pageshowEventStart", | |
"globalThis.BackForwardCacheRestoration.prototype.pageshowEventEnd", | |
"globalThis.BackForwardCacheRestoration.prototype.toJSON", | |
"globalThis.BackForwardCacheRestoration.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CharacterBoundsUpdateEvent", | |
"globalThis.CharacterBoundsUpdateEvent.prototype.rangeStart", | |
"globalThis.CharacterBoundsUpdateEvent.prototype.rangeEnd", | |
"globalThis.CharacterBoundsUpdateEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.EditContext", | |
"globalThis.EditContext.prototype.text", | |
"globalThis.EditContext.prototype.selectionStart", | |
"globalThis.EditContext.prototype.selectionEnd", | |
"globalThis.EditContext.prototype.characterBoundsRangeStart", | |
"globalThis.EditContext.prototype.ontextupdate", | |
"globalThis.EditContext.prototype.ontextformatupdate", | |
"globalThis.EditContext.prototype.oncharacterboundsupdate", | |
"globalThis.EditContext.prototype.oncompositionstart", | |
"globalThis.EditContext.prototype.oncompositionend", | |
"globalThis.EditContext.prototype.attachedElements", | |
"globalThis.EditContext.prototype.characterBounds", | |
"globalThis.EditContext.prototype.updateCharacterBounds", | |
"globalThis.EditContext.prototype.updateControlBounds", | |
"globalThis.EditContext.prototype.updateSelection", | |
"globalThis.EditContext.prototype.updateSelectionBounds", | |
"globalThis.EditContext.prototype.updateText", | |
"globalThis.EditContext.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextFormat", | |
"globalThis.TextFormat.prototype.rangeStart", | |
"globalThis.TextFormat.prototype.rangeEnd", | |
"globalThis.TextFormat.prototype.underlineStyle", | |
"globalThis.TextFormat.prototype.underlineThickness", | |
"globalThis.TextFormat.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextFormatUpdateEvent", | |
"globalThis.TextFormatUpdateEvent.prototype.getTextFormats", | |
"globalThis.TextFormatUpdateEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextUpdateEvent", | |
"globalThis.TextUpdateEvent.prototype.updateRangeStart", | |
"globalThis.TextUpdateEvent.prototype.updateRangeEnd", | |
"globalThis.TextUpdateEvent.prototype.text", | |
"globalThis.TextUpdateEvent.prototype.selectionStart", | |
"globalThis.TextUpdateEvent.prototype.selectionEnd", | |
"globalThis.TextUpdateEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Fence", | |
"globalThis.Fence.prototype.getNestedConfigs", | |
"globalThis.Fence.prototype.reportEvent", | |
"globalThis.Fence.prototype.setReportEventDataForAutomaticBeacons", | |
"globalThis.Fence.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FencedFrameConfig", | |
"globalThis.FencedFrameConfig.prototype.width", | |
"globalThis.FencedFrameConfig.prototype.height", | |
"globalThis.FencedFrameConfig.prototype.setSharedStorageContext", | |
"globalThis.FencedFrameConfig.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFencedFrameElement", | |
"globalThis.HTMLFencedFrameElement.prototype.width", | |
"globalThis.HTMLFencedFrameElement.prototype.height", | |
"globalThis.HTMLFencedFrameElement.prototype.sandbox", | |
"globalThis.HTMLFencedFrameElement.prototype.config", | |
"globalThis.HTMLFencedFrameElement.prototype.allow", | |
"globalThis.HTMLFencedFrameElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLFencedFrameElement.canLoadOpaqueURL", | |
"globalThis.FragmentDirective", | |
"globalThis.FragmentDirective.prototype.items", | |
"globalThis.FragmentDirective.prototype.createSelectorDirective", | |
"globalThis.FragmentDirective.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.LaunchParams", | |
"globalThis.LaunchParams.prototype.files", | |
"globalThis.LaunchParams.prototype.targetURL", | |
"globalThis.LaunchParams.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.LaunchQueue", | |
"globalThis.LaunchQueue.prototype.setConsumer", | |
"globalThis.LaunchQueue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NotRestoredReasons", | |
"globalThis.NotRestoredReasons.prototype.preventedBackForwardCache", | |
"globalThis.NotRestoredReasons.prototype.src", | |
"globalThis.NotRestoredReasons.prototype.id", | |
"globalThis.NotRestoredReasons.prototype.name", | |
"globalThis.NotRestoredReasons.prototype.url", | |
"globalThis.NotRestoredReasons.prototype.reasons", | |
"globalThis.NotRestoredReasons.prototype.children", | |
"globalThis.NotRestoredReasons.prototype.toJSON", | |
"globalThis.NotRestoredReasons.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceLongAnimationFrameTiming", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.desiredRenderStart", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.renderStart", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.styleAndLayoutStart", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.firstUIEventTimestamp", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.blockingDuration", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.scripts", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.toJSON", | |
"globalThis.PerformanceLongAnimationFrameTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PerformanceScriptTiming", | |
"globalThis.PerformanceScriptTiming.prototype.type", | |
"globalThis.PerformanceScriptTiming.prototype.windowAttribution", | |
"globalThis.PerformanceScriptTiming.prototype.executionStart", | |
"globalThis.PerformanceScriptTiming.prototype.forcedStyleAndLayoutDuration", | |
"globalThis.PerformanceScriptTiming.prototype.pauseDuration", | |
"globalThis.PerformanceScriptTiming.prototype.desiredExecutionStart", | |
"globalThis.PerformanceScriptTiming.prototype.window", | |
"globalThis.PerformanceScriptTiming.prototype.sourceLocation", | |
"globalThis.PerformanceScriptTiming.prototype.toJSON", | |
"globalThis.PerformanceScriptTiming.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SharedStorage", | |
"globalThis.SharedStorage.prototype.append", | |
"globalThis.SharedStorage.prototype.clear", | |
"globalThis.SharedStorage.prototype.delete", | |
"globalThis.SharedStorage.prototype.set", | |
"globalThis.SharedStorage.prototype.worklet", | |
"globalThis.SharedStorage.prototype.run", | |
"globalThis.SharedStorage.prototype.selectURL", | |
"globalThis.SharedStorage.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SharedStorageWorklet", | |
"globalThis.SharedStorageWorklet.prototype.addModule", | |
"globalThis.SharedStorageWorklet.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SoftNavigationEntry", | |
"globalThis.SoftNavigationEntry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TimestampTrigger", | |
"globalThis.TimestampTrigger.prototype.timestamp", | |
"globalThis.TimestampTrigger.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WindowControlsOverlay", | |
"globalThis.WindowControlsOverlay.prototype.visible", | |
"globalThis.WindowControlsOverlay.prototype.ongeometrychange", | |
"globalThis.WindowControlsOverlay.prototype.getTitlebarAreaRect", | |
"globalThis.WindowControlsOverlay.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WindowControlsOverlayGeometryChangeEvent", | |
"globalThis.WindowControlsOverlayGeometryChangeEvent.prototype.titlebarAreaRect", | |
"globalThis.WindowControlsOverlayGeometryChangeEvent.prototype.visible", | |
"globalThis.WindowControlsOverlayGeometryChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.originAgentCluster", | |
"globalThis.onpagereveal", | |
"globalThis.credentialless", | |
"globalThis.speechSynthesis", | |
"globalThis.oncontentvisibilityautostatechange", | |
"globalThis.onoverscroll", | |
"globalThis.onscrollend", | |
"globalThis.ontimezonechange", | |
"globalThis.AccessibleNode", | |
"globalThis.AccessibleNode.prototype.activeDescendant", | |
"globalThis.AccessibleNode.prototype.atomic", | |
"globalThis.AccessibleNode.prototype.autocomplete", | |
"globalThis.AccessibleNode.prototype.busy", | |
"globalThis.AccessibleNode.prototype.checked", | |
"globalThis.AccessibleNode.prototype.colCount", | |
"globalThis.AccessibleNode.prototype.colIndex", | |
"globalThis.AccessibleNode.prototype.colSpan", | |
"globalThis.AccessibleNode.prototype.controls", | |
"globalThis.AccessibleNode.prototype.current", | |
"globalThis.AccessibleNode.prototype.describedBy", | |
"globalThis.AccessibleNode.prototype.details", | |
"globalThis.AccessibleNode.prototype.disabled", | |
"globalThis.AccessibleNode.prototype.errorMessage", | |
"globalThis.AccessibleNode.prototype.expanded", | |
"globalThis.AccessibleNode.prototype.flowTo", | |
"globalThis.AccessibleNode.prototype.hasPopup", | |
"globalThis.AccessibleNode.prototype.hidden", | |
"globalThis.AccessibleNode.prototype.invalid", | |
"globalThis.AccessibleNode.prototype.keyShortcuts", | |
"globalThis.AccessibleNode.prototype.label", | |
"globalThis.AccessibleNode.prototype.labeledBy", | |
"globalThis.AccessibleNode.prototype.level", | |
"globalThis.AccessibleNode.prototype.live", | |
"globalThis.AccessibleNode.prototype.modal", | |
"globalThis.AccessibleNode.prototype.multiline", | |
"globalThis.AccessibleNode.prototype.multiselectable", | |
"globalThis.AccessibleNode.prototype.orientation", | |
"globalThis.AccessibleNode.prototype.owns", | |
"globalThis.AccessibleNode.prototype.placeholder", | |
"globalThis.AccessibleNode.prototype.posInSet", | |
"globalThis.AccessibleNode.prototype.pressed", | |
"globalThis.AccessibleNode.prototype.readOnly", | |
"globalThis.AccessibleNode.prototype.relevant", | |
"globalThis.AccessibleNode.prototype.required", | |
"globalThis.AccessibleNode.prototype.role", | |
"globalThis.AccessibleNode.prototype.roleDescription", | |
"globalThis.AccessibleNode.prototype.rowCount", | |
"globalThis.AccessibleNode.prototype.rowIndex", | |
"globalThis.AccessibleNode.prototype.rowSpan", | |
"globalThis.AccessibleNode.prototype.selected", | |
"globalThis.AccessibleNode.prototype.setSize", | |
"globalThis.AccessibleNode.prototype.sort", | |
"globalThis.AccessibleNode.prototype.valueMax", | |
"globalThis.AccessibleNode.prototype.valueMin", | |
"globalThis.AccessibleNode.prototype.valueNow", | |
"globalThis.AccessibleNode.prototype.valueText", | |
"globalThis.AccessibleNode.prototype.onaccessibleclick", | |
"globalThis.AccessibleNode.prototype.onaccessiblecontextmenu", | |
"globalThis.AccessibleNode.prototype.onaccessibledecrement", | |
"globalThis.AccessibleNode.prototype.onaccessiblefocus", | |
"globalThis.AccessibleNode.prototype.onaccessibleincrement", | |
"globalThis.AccessibleNode.prototype.onaccessiblescrollintoview", | |
"globalThis.AccessibleNode.prototype.childNodes", | |
"globalThis.AccessibleNode.prototype.appendChild", | |
"globalThis.AccessibleNode.prototype.removeChild", | |
"globalThis.AccessibleNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AccessibleNodeList", | |
"globalThis.AccessibleNodeList.prototype.length", | |
"globalThis.AccessibleNodeList.prototype.add", | |
"globalThis.AccessibleNodeList.prototype.item", | |
"globalThis.AccessibleNodeList.prototype.remove", | |
"globalThis.AccessibleNodeList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AccessibleNodeList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.ComputedAccessibleNode", | |
"globalThis.ComputedAccessibleNode.prototype.atomic", | |
"globalThis.ComputedAccessibleNode.prototype.busy", | |
"globalThis.ComputedAccessibleNode.prototype.disabled", | |
"globalThis.ComputedAccessibleNode.prototype.expanded", | |
"globalThis.ComputedAccessibleNode.prototype.modal", | |
"globalThis.ComputedAccessibleNode.prototype.multiline", | |
"globalThis.ComputedAccessibleNode.prototype.multiselectable", | |
"globalThis.ComputedAccessibleNode.prototype.readOnly", | |
"globalThis.ComputedAccessibleNode.prototype.required", | |
"globalThis.ComputedAccessibleNode.prototype.selected", | |
"globalThis.ComputedAccessibleNode.prototype.colCount", | |
"globalThis.ComputedAccessibleNode.prototype.colIndex", | |
"globalThis.ComputedAccessibleNode.prototype.colSpan", | |
"globalThis.ComputedAccessibleNode.prototype.level", | |
"globalThis.ComputedAccessibleNode.prototype.posInSet", | |
"globalThis.ComputedAccessibleNode.prototype.rowCount", | |
"globalThis.ComputedAccessibleNode.prototype.rowIndex", | |
"globalThis.ComputedAccessibleNode.prototype.rowSpan", | |
"globalThis.ComputedAccessibleNode.prototype.setSize", | |
"globalThis.ComputedAccessibleNode.prototype.valueMax", | |
"globalThis.ComputedAccessibleNode.prototype.valueMin", | |
"globalThis.ComputedAccessibleNode.prototype.valueNow", | |
"globalThis.ComputedAccessibleNode.prototype.autocomplete", | |
"globalThis.ComputedAccessibleNode.prototype.checked", | |
"globalThis.ComputedAccessibleNode.prototype.keyShortcuts", | |
"globalThis.ComputedAccessibleNode.prototype.name", | |
"globalThis.ComputedAccessibleNode.prototype.placeholder", | |
"globalThis.ComputedAccessibleNode.prototype.role", | |
"globalThis.ComputedAccessibleNode.prototype.roleDescription", | |
"globalThis.ComputedAccessibleNode.prototype.valueText", | |
"globalThis.ComputedAccessibleNode.prototype.parent", | |
"globalThis.ComputedAccessibleNode.prototype.firstChild", | |
"globalThis.ComputedAccessibleNode.prototype.lastChild", | |
"globalThis.ComputedAccessibleNode.prototype.previousSibling", | |
"globalThis.ComputedAccessibleNode.prototype.nextSibling", | |
"globalThis.ComputedAccessibleNode.prototype.ensureUpToDate", | |
"globalThis.ComputedAccessibleNode.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AnimationPlaybackEvent", | |
"globalThis.AnimationPlaybackEvent.prototype.currentTime", | |
"globalThis.AnimationPlaybackEvent.prototype.timelineTime", | |
"globalThis.AnimationPlaybackEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AnimationTimeline", | |
"globalThis.AnimationTimeline.prototype.currentTime", | |
"globalThis.AnimationTimeline.prototype.duration", | |
"globalThis.AnimationTimeline.prototype.getCurrentTime", | |
"globalThis.AnimationTimeline.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSAnimation", | |
"globalThis.CSSAnimation.prototype.animationName", | |
"globalThis.CSSAnimation.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSTransition", | |
"globalThis.CSSTransition.prototype.transitionProperty", | |
"globalThis.CSSTransition.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DocumentTimeline", | |
"globalThis.DocumentTimeline.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AttributePart", | |
"globalThis.AttributePart.prototype.localName", | |
"globalThis.AttributePart.prototype.automatic", | |
"globalThis.AttributePart.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ChildNodePart", | |
"globalThis.ChildNodePart.prototype.previousSibling", | |
"globalThis.ChildNodePart.prototype.nextSibling", | |
"globalThis.ChildNodePart.prototype.children", | |
"globalThis.ChildNodePart.prototype.replaceChildren", | |
"globalThis.ChildNodePart.prototype.rootContainer", | |
"globalThis.ChildNodePart.prototype.clone", | |
"globalThis.ChildNodePart.prototype.getPartNode", | |
"globalThis.ChildNodePart.prototype.getParts", | |
"globalThis.ChildNodePart.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DocumentPartRoot", | |
"globalThis.DocumentPartRoot.prototype.rootContainer", | |
"globalThis.DocumentPartRoot.prototype.clone", | |
"globalThis.DocumentPartRoot.prototype.getPartNode", | |
"globalThis.DocumentPartRoot.prototype.getParts", | |
"globalThis.DocumentPartRoot.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NodePart", | |
"globalThis.NodePart.prototype.node", | |
"globalThis.NodePart.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Part", | |
"globalThis.Part.prototype.root", | |
"globalThis.Part.prototype.metadata", | |
"globalThis.Part.prototype.disconnect", | |
"globalThis.Part.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioTrack", | |
"globalThis.AudioTrack.prototype.id", | |
"globalThis.AudioTrack.prototype.kind", | |
"globalThis.AudioTrack.prototype.label", | |
"globalThis.AudioTrack.prototype.language", | |
"globalThis.AudioTrack.prototype.enabled", | |
"globalThis.AudioTrack.prototype.sourceBuffer", | |
"globalThis.AudioTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioTrackList", | |
"globalThis.AudioTrackList.prototype.length", | |
"globalThis.AudioTrackList.prototype.onchange", | |
"globalThis.AudioTrackList.prototype.onaddtrack", | |
"globalThis.AudioTrackList.prototype.onremovetrack", | |
"globalThis.AudioTrackList.prototype.getTrackById", | |
"globalThis.AudioTrackList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.AudioTrackList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.VideoTrack", | |
"globalThis.VideoTrack.prototype.id", | |
"globalThis.VideoTrack.prototype.kind", | |
"globalThis.VideoTrack.prototype.label", | |
"globalThis.VideoTrack.prototype.language", | |
"globalThis.VideoTrack.prototype.selected", | |
"globalThis.VideoTrack.prototype.sourceBuffer", | |
"globalThis.VideoTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VideoTrackList", | |
"globalThis.VideoTrackList.prototype.length", | |
"globalThis.VideoTrackList.prototype.selectedIndex", | |
"globalThis.VideoTrackList.prototype.onchange", | |
"globalThis.VideoTrackList.prototype.onaddtrack", | |
"globalThis.VideoTrackList.prototype.onremovetrack", | |
"globalThis.VideoTrackList.prototype.getTrackById", | |
"globalThis.VideoTrackList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VideoTrackList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.BackgroundFetchManager", | |
"globalThis.BackgroundFetchManager.prototype.fetch", | |
"globalThis.BackgroundFetchManager.prototype.get", | |
"globalThis.BackgroundFetchManager.prototype.getIds", | |
"globalThis.BackgroundFetchManager.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BackgroundFetchRecord", | |
"globalThis.BackgroundFetchRecord.prototype.request", | |
"globalThis.BackgroundFetchRecord.prototype.responseReady", | |
"globalThis.BackgroundFetchRecord.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BackgroundFetchRegistration", | |
"globalThis.BackgroundFetchRegistration.prototype.id", | |
"globalThis.BackgroundFetchRegistration.prototype.uploadTotal", | |
"globalThis.BackgroundFetchRegistration.prototype.uploaded", | |
"globalThis.BackgroundFetchRegistration.prototype.downloadTotal", | |
"globalThis.BackgroundFetchRegistration.prototype.downloaded", | |
"globalThis.BackgroundFetchRegistration.prototype.result", | |
"globalThis.BackgroundFetchRegistration.prototype.failureReason", | |
"globalThis.BackgroundFetchRegistration.prototype.recordsAvailable", | |
"globalThis.BackgroundFetchRegistration.prototype.onprogress", | |
"globalThis.BackgroundFetchRegistration.prototype.abort", | |
"globalThis.BackgroundFetchRegistration.prototype.match", | |
"globalThis.BackgroundFetchRegistration.prototype.matchAll", | |
"globalThis.BackgroundFetchRegistration.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BeforeCreatePolicyEvent", | |
"globalThis.BeforeCreatePolicyEvent.prototype.policyName", | |
"globalThis.BeforeCreatePolicyEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BluetoothUUID", | |
"globalThis.BluetoothUUID.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.BluetoothUUID.canonicalUUID", | |
"globalThis.BluetoothUUID.getCharacteristic", | |
"globalThis.BluetoothUUID.getDescriptor", | |
"globalThis.BluetoothUUID.getService", | |
"globalThis.BrowserCaptureMediaStreamTrack", | |
"globalThis.BrowserCaptureMediaStreamTrack.prototype.cropTo", | |
"globalThis.BrowserCaptureMediaStreamTrack.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CropTarget", | |
"globalThis.CropTarget.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CropTarget.fromElement", | |
"globalThis.CSSColorValue", | |
"globalThis.CSSColorValue.prototype.toHSL", | |
"globalThis.CSSColorValue.prototype.toHWB", | |
"globalThis.CSSColorValue.prototype.toRGB", | |
"globalThis.CSSColorValue.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSColorValue.parse", | |
"globalThis.CSSHSL", | |
"globalThis.CSSHSL.prototype.h", | |
"globalThis.CSSHSL.prototype.s", | |
"globalThis.CSSHSL.prototype.l", | |
"globalThis.CSSHSL.prototype.alpha", | |
"globalThis.CSSHSL.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSHWB", | |
"globalThis.CSSHWB.prototype.h", | |
"globalThis.CSSHWB.prototype.w", | |
"globalThis.CSSHWB.prototype.b", | |
"globalThis.CSSHWB.prototype.alpha", | |
"globalThis.CSSHWB.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSRGB", | |
"globalThis.CSSRGB.prototype.r", | |
"globalThis.CSSRGB.prototype.g", | |
"globalThis.CSSRGB.prototype.b", | |
"globalThis.CSSRGB.prototype.alpha", | |
"globalThis.CSSRGB.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSPositionFallbackRule", | |
"globalThis.CSSPositionFallbackRule.prototype.name", | |
"globalThis.CSSPositionFallbackRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSTryRule", | |
"globalThis.CSSTryRule.prototype.style", | |
"globalThis.CSSTryRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSScopeRule", | |
"globalThis.CSSScopeRule.prototype.start", | |
"globalThis.CSSScopeRule.prototype.end", | |
"globalThis.CSSScopeRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CSSStartingStyleRule", | |
"globalThis.CSSStartingStyleRule.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.CanvasFilter", | |
"globalThis.CanvasFilter.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ContentIndex", | |
"globalThis.ContentIndex.prototype.add", | |
"globalThis.ContentIndex.prototype.delete", | |
"globalThis.ContentIndex.prototype.getAll", | |
"globalThis.ContentIndex.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ContentVisibilityAutoStateChangeEvent", | |
"globalThis.ContentVisibilityAutoStateChangeEvent.prototype.skipped", | |
"globalThis.ContentVisibilityAutoStateChangeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DelegatedInkTrailPresenter", | |
"globalThis.DelegatedInkTrailPresenter.prototype.presentationArea", | |
"globalThis.DelegatedInkTrailPresenter.prototype.expectedImprovement", | |
"globalThis.DelegatedInkTrailPresenter.prototype.updateInkTrailStartPoint", | |
"globalThis.DelegatedInkTrailPresenter.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Ink", | |
"globalThis.Ink.prototype.requestPresenter", | |
"globalThis.Ink.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Directive", | |
"globalThis.Directive.prototype.type", | |
"globalThis.Directive.prototype.toString", | |
"globalThis.Directive.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SelectorDirective", | |
"globalThis.SelectorDirective.prototype.getMatchingRange", | |
"globalThis.SelectorDirective.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TextDirective", | |
"globalThis.TextDirective.prototype.prefix", | |
"globalThis.TextDirective.prototype.textStart", | |
"globalThis.TextDirective.prototype.textEnd", | |
"globalThis.TextDirective.prototype.suffix", | |
"globalThis.TextDirective.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.DocumentPictureInPictureEvent", | |
"globalThis.DocumentPictureInPictureEvent.prototype.window", | |
"globalThis.DocumentPictureInPictureEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FormattedText", | |
"globalThis.FormattedText.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.FormattedText.format", | |
"globalThis.GamepadAxisEvent", | |
"globalThis.GamepadAxisEvent.prototype.axis", | |
"globalThis.GamepadAxisEvent.prototype.value", | |
"globalThis.GamepadAxisEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.GamepadButtonEvent", | |
"globalThis.GamepadButtonEvent.prototype.button", | |
"globalThis.GamepadButtonEvent.prototype.value", | |
"globalThis.GamepadButtonEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLPermissionElement", | |
"globalThis.HTMLPermissionElement.prototype.type", | |
"globalThis.HTMLPermissionElement.prototype.onresolve", | |
"globalThis.HTMLPermissionElement.prototype.ondismiss", | |
"globalThis.HTMLPermissionElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HTMLSelectListElement", | |
"globalThis.HTMLSelectListElement.prototype.open", | |
"globalThis.HTMLSelectListElement.prototype.selectedOption", | |
"globalThis.HTMLSelectListElement.prototype.value", | |
"globalThis.HTMLSelectListElement.prototype.disabled", | |
"globalThis.HTMLSelectListElement.prototype.form", | |
"globalThis.HTMLSelectListElement.prototype.name", | |
"globalThis.HTMLSelectListElement.prototype.type", | |
"globalThis.HTMLSelectListElement.prototype.required", | |
"globalThis.HTMLSelectListElement.prototype.willValidate", | |
"globalThis.HTMLSelectListElement.prototype.validity", | |
"globalThis.HTMLSelectListElement.prototype.validationMessage", | |
"globalThis.HTMLSelectListElement.prototype.labels", | |
"globalThis.HTMLSelectListElement.prototype.checkValidity", | |
"globalThis.HTMLSelectListElement.prototype.reportValidity", | |
"globalThis.HTMLSelectListElement.prototype.setCustomValidity", | |
"globalThis.HTMLSelectListElement.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Highlight", | |
"globalThis.Highlight.prototype.priority", | |
"globalThis.Highlight.prototype.type", | |
"globalThis.Highlight.prototype.size", | |
"globalThis.Highlight.prototype.add", | |
"globalThis.Highlight.prototype.clear", | |
"globalThis.Highlight.prototype.delete", | |
"globalThis.Highlight.prototype.entries", | |
"globalThis.Highlight.prototype.forEach", | |
"globalThis.Highlight.prototype.has", | |
"globalThis.Highlight.prototype.keys", | |
"globalThis.Highlight.prototype.values", | |
"globalThis.Highlight.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Highlight.prototype.Symbol(Symbol.iterator)", | |
"globalThis.HighlightRegistry", | |
"globalThis.HighlightRegistry.prototype.size", | |
"globalThis.HighlightRegistry.prototype.clear", | |
"globalThis.HighlightRegistry.prototype.delete", | |
"globalThis.HighlightRegistry.prototype.entries", | |
"globalThis.HighlightRegistry.prototype.forEach", | |
"globalThis.HighlightRegistry.prototype.get", | |
"globalThis.HighlightRegistry.prototype.has", | |
"globalThis.HighlightRegistry.prototype.keys", | |
"globalThis.HighlightRegistry.prototype.set", | |
"globalThis.HighlightRegistry.prototype.values", | |
"globalThis.HighlightRegistry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.HighlightRegistry.prototype.Symbol(Symbol.iterator)", | |
"globalThis.InvokeEvent", | |
"globalThis.InvokeEvent.prototype.invoker", | |
"globalThis.InvokeEvent.prototype.action", | |
"globalThis.InvokeEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ML", | |
"globalThis.ML.prototype.createContext", | |
"globalThis.ML.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MLModelLoader", | |
"globalThis.MLModelLoader.prototype.load", | |
"globalThis.MLModelLoader.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaMetadata", | |
"globalThis.MediaMetadata.prototype.title", | |
"globalThis.MediaMetadata.prototype.artist", | |
"globalThis.MediaMetadata.prototype.album", | |
"globalThis.MediaMetadata.prototype.artwork", | |
"globalThis.MediaMetadata.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MediaSession", | |
"globalThis.MediaSession.prototype.metadata", | |
"globalThis.MediaSession.prototype.playbackState", | |
"globalThis.MediaSession.prototype.setActionHandler", | |
"globalThis.MediaSession.prototype.setCameraActive", | |
"globalThis.MediaSession.prototype.setMicrophoneActive", | |
"globalThis.MediaSession.prototype.setPositionState", | |
"globalThis.MediaSession.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.MutationEvent", | |
"globalThis.MutationEvent.prototype.relatedNode", | |
"globalThis.MutationEvent.prototype.prevValue", | |
"globalThis.MutationEvent.prototype.newValue", | |
"globalThis.MutationEvent.prototype.attrName", | |
"globalThis.MutationEvent.prototype.attrChange", | |
"globalThis.MutationEvent.prototype.initMutationEvent", | |
"globalThis.MutationEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.NavigatorUAData", | |
"globalThis.NavigatorUAData.prototype.brands", | |
"globalThis.NavigatorUAData.prototype.mobile", | |
"globalThis.NavigatorUAData.prototype.platform", | |
"globalThis.NavigatorUAData.prototype.getHighEntropyValues", | |
"globalThis.NavigatorUAData.prototype.toJSON", | |
"globalThis.NavigatorUAData.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Notification", | |
"globalThis.Notification.prototype.onclick", | |
"globalThis.Notification.prototype.onshow", | |
"globalThis.Notification.prototype.onerror", | |
"globalThis.Notification.prototype.onclose", | |
"globalThis.Notification.prototype.title", | |
"globalThis.Notification.prototype.dir", | |
"globalThis.Notification.prototype.lang", | |
"globalThis.Notification.prototype.body", | |
"globalThis.Notification.prototype.tag", | |
"globalThis.Notification.prototype.icon", | |
"globalThis.Notification.prototype.badge", | |
"globalThis.Notification.prototype.vibrate", | |
"globalThis.Notification.prototype.timestamp", | |
"globalThis.Notification.prototype.renotify", | |
"globalThis.Notification.prototype.silent", | |
"globalThis.Notification.prototype.requireInteraction", | |
"globalThis.Notification.prototype.data", | |
"globalThis.Notification.prototype.actions", | |
"globalThis.Notification.prototype.close", | |
"globalThis.Notification.prototype.showTrigger", | |
"globalThis.Notification.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Notification.permission", | |
"globalThis.Notification.maxActions", | |
"globalThis.Notification.requestPermission", | |
"globalThis.Observable", | |
"globalThis.Observable.prototype.subscribe", | |
"globalThis.Observable.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Subscriber", | |
"globalThis.Subscriber.prototype.signal", | |
"globalThis.Subscriber.prototype.complete", | |
"globalThis.Subscriber.prototype.error", | |
"globalThis.Subscriber.prototype.next", | |
"globalThis.Subscriber.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.OverscrollEvent", | |
"globalThis.OverscrollEvent.prototype.deltaX", | |
"globalThis.OverscrollEvent.prototype.deltaY", | |
"globalThis.OverscrollEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PageRevealEvent", | |
"globalThis.PageRevealEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PaymentManager", | |
"globalThis.PaymentManager.prototype.userHint", | |
"globalThis.PaymentManager.prototype.enableDelegations", | |
"globalThis.PaymentManager.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PaymentRequestUpdateEvent", | |
"globalThis.PaymentRequestUpdateEvent.prototype.updateWith", | |
"globalThis.PaymentRequestUpdateEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PeriodicSyncManager", | |
"globalThis.PeriodicSyncManager.prototype.getTags", | |
"globalThis.PeriodicSyncManager.prototype.register", | |
"globalThis.PeriodicSyncManager.prototype.unregister", | |
"globalThis.PeriodicSyncManager.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PermissionStatus", | |
"globalThis.PermissionStatus.prototype.name", | |
"globalThis.PermissionStatus.prototype.state", | |
"globalThis.PermissionStatus.prototype.onchange", | |
"globalThis.PermissionStatus.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.Permissions", | |
"globalThis.Permissions.prototype.query", | |
"globalThis.Permissions.prototype.request", | |
"globalThis.Permissions.prototype.requestAll", | |
"globalThis.Permissions.prototype.revoke", | |
"globalThis.Permissions.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PushManager", | |
"globalThis.PushManager.prototype.getSubscription", | |
"globalThis.PushManager.prototype.permissionState", | |
"globalThis.PushManager.prototype.subscribe", | |
"globalThis.PushManager.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PushManager.supportedContentEncodings", | |
"globalThis.PushSubscription", | |
"globalThis.PushSubscription.prototype.endpoint", | |
"globalThis.PushSubscription.prototype.expirationTime", | |
"globalThis.PushSubscription.prototype.options", | |
"globalThis.PushSubscription.prototype.getKey", | |
"globalThis.PushSubscription.prototype.toJSON", | |
"globalThis.PushSubscription.prototype.unsubscribe", | |
"globalThis.PushSubscription.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.PushSubscriptionOptions", | |
"globalThis.PushSubscriptionOptions.prototype.userVisibleOnly", | |
"globalThis.PushSubscriptionOptions.prototype.applicationServerKey", | |
"globalThis.PushSubscriptionOptions.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.RemotePlayback", | |
"globalThis.RemotePlayback.prototype.state", | |
"globalThis.RemotePlayback.prototype.onconnecting", | |
"globalThis.RemotePlayback.prototype.onconnect", | |
"globalThis.RemotePlayback.prototype.ondisconnect", | |
"globalThis.RemotePlayback.prototype.cancelWatchAvailability", | |
"globalThis.RemotePlayback.prototype.prompt", | |
"globalThis.RemotePlayback.prototype.watchAvailability", | |
"globalThis.RemotePlayback.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ScrollTimeline", | |
"globalThis.ScrollTimeline.prototype.source", | |
"globalThis.ScrollTimeline.prototype.axis", | |
"globalThis.ScrollTimeline.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.ViewTimeline", | |
"globalThis.ViewTimeline.prototype.subject", | |
"globalThis.ViewTimeline.prototype.startOffset", | |
"globalThis.ViewTimeline.prototype.endOffset", | |
"globalThis.ViewTimeline.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SharedWorker", | |
"globalThis.SharedWorker.prototype.port", | |
"globalThis.SharedWorker.prototype.onerror", | |
"globalThis.SharedWorker.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SpeechSynthesisErrorEvent", | |
"globalThis.SpeechSynthesisErrorEvent.prototype.error", | |
"globalThis.SpeechSynthesisErrorEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SpeechSynthesisEvent", | |
"globalThis.SpeechSynthesisEvent.prototype.utterance", | |
"globalThis.SpeechSynthesisEvent.prototype.charIndex", | |
"globalThis.SpeechSynthesisEvent.prototype.charLength", | |
"globalThis.SpeechSynthesisEvent.prototype.elapsedTime", | |
"globalThis.SpeechSynthesisEvent.prototype.name", | |
"globalThis.SpeechSynthesisEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.SpeechSynthesisUtterance", | |
"globalThis.SpeechSynthesisUtterance.prototype.text", | |
"globalThis.SpeechSynthesisUtterance.prototype.lang", | |
"globalThis.SpeechSynthesisUtterance.prototype.voice", | |
"globalThis.SpeechSynthesisUtterance.prototype.volume", | |
"globalThis.SpeechSynthesisUtterance.prototype.rate", | |
"globalThis.SpeechSynthesisUtterance.prototype.pitch", | |
"globalThis.SpeechSynthesisUtterance.prototype.onstart", | |
"globalThis.SpeechSynthesisUtterance.prototype.onend", | |
"globalThis.SpeechSynthesisUtterance.prototype.onerror", | |
"globalThis.SpeechSynthesisUtterance.prototype.onpause", | |
"globalThis.SpeechSynthesisUtterance.prototype.onresume", | |
"globalThis.SpeechSynthesisUtterance.prototype.onmark", | |
"globalThis.SpeechSynthesisUtterance.prototype.onboundary", | |
"globalThis.SpeechSynthesisUtterance.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrackDefault", | |
"globalThis.TrackDefault.prototype.type", | |
"globalThis.TrackDefault.prototype.byteStreamTrackID", | |
"globalThis.TrackDefault.prototype.language", | |
"globalThis.TrackDefault.prototype.label", | |
"globalThis.TrackDefault.prototype.kinds", | |
"globalThis.TrackDefault.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrackDefaultList", | |
"globalThis.TrackDefaultList.prototype.length", | |
"globalThis.TrackDefaultList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.TrackDefaultList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.VTTRegion", | |
"globalThis.VTTRegion.prototype.id", | |
"globalThis.VTTRegion.prototype.width", | |
"globalThis.VTTRegion.prototype.lines", | |
"globalThis.VTTRegion.prototype.regionAnchorX", | |
"globalThis.VTTRegion.prototype.regionAnchorY", | |
"globalThis.VTTRegion.prototype.viewportAnchorX", | |
"globalThis.VTTRegion.prototype.viewportAnchorY", | |
"globalThis.VTTRegion.prototype.scroll", | |
"globalThis.VTTRegion.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VideoPlaybackQuality", | |
"globalThis.VideoPlaybackQuality.prototype.creationTime", | |
"globalThis.VideoPlaybackQuality.prototype.totalVideoFrames", | |
"globalThis.VideoPlaybackQuality.prototype.droppedVideoFrames", | |
"globalThis.VideoPlaybackQuality.prototype.corruptedVideoFrames", | |
"globalThis.VideoPlaybackQuality.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.VisibilityStateEntry", | |
"globalThis.VisibilityStateEntry.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.WebSocketStream", | |
"globalThis.WebSocketStream.prototype.url", | |
"globalThis.WebSocketStream.prototype.opened", | |
"globalThis.WebSocketStream.prototype.closed", | |
"globalThis.WebSocketStream.prototype.close", | |
"globalThis.WebSocketStream.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitSpeechGrammar", | |
"globalThis.webkitSpeechGrammar.prototype.src", | |
"globalThis.webkitSpeechGrammar.prototype.weight", | |
"globalThis.webkitSpeechGrammar.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitSpeechGrammarList", | |
"globalThis.webkitSpeechGrammarList.prototype.length", | |
"globalThis.webkitSpeechGrammarList.prototype.addFromString", | |
"globalThis.webkitSpeechGrammarList.prototype.addFromUri", | |
"globalThis.webkitSpeechGrammarList.prototype.item", | |
"globalThis.webkitSpeechGrammarList.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitSpeechGrammarList.prototype.Symbol(Symbol.iterator)", | |
"globalThis.webkitSpeechRecognition", | |
"globalThis.webkitSpeechRecognition.prototype.grammars", | |
"globalThis.webkitSpeechRecognition.prototype.lang", | |
"globalThis.webkitSpeechRecognition.prototype.continuous", | |
"globalThis.webkitSpeechRecognition.prototype.interimResults", | |
"globalThis.webkitSpeechRecognition.prototype.maxAlternatives", | |
"globalThis.webkitSpeechRecognition.prototype.onaudiostart", | |
"globalThis.webkitSpeechRecognition.prototype.onsoundstart", | |
"globalThis.webkitSpeechRecognition.prototype.onspeechstart", | |
"globalThis.webkitSpeechRecognition.prototype.onspeechend", | |
"globalThis.webkitSpeechRecognition.prototype.onsoundend", | |
"globalThis.webkitSpeechRecognition.prototype.onaudioend", | |
"globalThis.webkitSpeechRecognition.prototype.onresult", | |
"globalThis.webkitSpeechRecognition.prototype.onnomatch", | |
"globalThis.webkitSpeechRecognition.prototype.onerror", | |
"globalThis.webkitSpeechRecognition.prototype.onstart", | |
"globalThis.webkitSpeechRecognition.prototype.onend", | |
"globalThis.webkitSpeechRecognition.prototype.abort", | |
"globalThis.webkitSpeechRecognition.prototype.start", | |
"globalThis.webkitSpeechRecognition.prototype.stop", | |
"globalThis.webkitSpeechRecognition.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitSpeechRecognitionError", | |
"globalThis.webkitSpeechRecognitionError.prototype.error", | |
"globalThis.webkitSpeechRecognitionError.prototype.message", | |
"globalThis.webkitSpeechRecognitionError.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.webkitSpeechRecognitionEvent", | |
"globalThis.webkitSpeechRecognitionEvent.prototype.resultIndex", | |
"globalThis.webkitSpeechRecognitionEvent.prototype.results", | |
"globalThis.webkitSpeechRecognitionEvent.prototype.Symbol(Symbol.toStringTag)", | |
"globalThis.getComputedAccessibleNode", | |
"globalThis.webkitRequestFileSystem", | |
"globalThis.webkitResolveLocalFileSystemURL", | |
"globalThis.dir", | |
"globalThis.dirxml", | |
"globalThis.profile", | |
"globalThis.profileEnd", | |
"globalThis.clear", | |
"globalThis.table", | |
"globalThis.keys", | |
"globalThis.values", | |
"globalThis.debug", | |
"globalThis.undebug", | |
"globalThis.monitor", | |
"globalThis.unmonitor", | |
"globalThis.inspect", | |
"globalThis.copy", | |
"globalThis.queryObjects", | |
"globalThis.getEventListeners", | |
"globalThis.getEventListeners.toString", | |
"globalThis.getAccessibleName", | |
"globalThis.getAccessibleName.toString", | |
"globalThis.getAccessibleRole", | |
"globalThis.getAccessibleRole.toString", | |
"globalThis.monitorEvents", | |
"globalThis.monitorEvents.toString", | |
"globalThis.unmonitorEvents", | |
"globalThis.unmonitorEvents.toString", | |
"globalThis.$", | |
"globalThis.$.toString", | |
"globalThis.$$", | |
"globalThis.$$.toString", | |
"globalThis.$x", | |
"globalThis.$x.toString", | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment