Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test prefers-reduced-motion emulation.
// Load the test page under .com TLD, to make the inner .org iframe remote with
// Fission.
const TEST_URI = URL_ROOT_COM_SSL + "doc_prefers_reduced_motion_emulation.html";
add_task(async function () {
await addTab(TEST_URI);
const defaultPrefersReduced = await getCurrentPrefersReducedMotionReduce();
const { inspector, view, toolbox } = await openRuleView();
info("Check that the prefers-reduced-motion emulation radio buttons exist");
info(
"Open emulation panel and check that the color scheme simulation buttons exist"
);
await openEmulationPanel(view);
const reduceRadioButton = inspector.panelDoc.querySelector(
"#reduced-motion-emulation-reduce"
);
const noPreferenceRadioButton = inspector.panelDoc.querySelector(
"#reduced-motion-emulation-no-preference"
);
const noEmulationRadioButton = inspector.panelDoc.querySelector(
"#reduced-motion-emulation-none"
);
ok(
reduceRadioButton,
"The reduce motion preference emulation radio button exists"
);
ok(
noPreferenceRadioButton,
"The no motion preference emulation radio button exists"
);
ok(noEmulationRadioButton, "The no emulation radio button exists");
// Initially, the emulation should be disabled
checkEmulationButtonsStatus(inspector, "none");
// Define functions checking the rule view against the current OS preference,
// and the opposite emulated preference.
const divHasDefaultPreferenceStyling = async () =>
(await getPropertiesForRuleIndex(view, 1)).has(
defaultPrefersReduced ? "animation-name:none" : "animation-name:--pulse"
);
const divHasOppositeToDefaultStyling = async () =>
(await getPropertiesForRuleIndex(view, 1)).has(
defaultPrefersReduced ? "animation-name:--pulse" : "animation-name:none"
);
info(
"Select a div that will change according to prefers-reduced-motion preference emulation"
);
await selectNode("div", inspector);
ok(
await divHasDefaultPreferenceStyling(),
"The div has the expected animation-name for the current OS preference"
);
info("Select the node from the remote iframe");
await selectNodeInFrames(["iframe", "div"], inspector);
ok(
await divHasDefaultPreferenceStyling(),
"The iframe element has the expected animation-name for the current OS preference"
);
const radioButtonToEnable = defaultPrefersReduced
? noPreferenceRadioButton
: reduceRadioButton;
const radioButtonToReset = defaultPrefersReduced
? reduceRadioButton
: noPreferenceRadioButton;
const defaultPreference = defaultPrefersReduced ? "reduce" : "no-preference";
const oppositePreference = defaultPrefersReduced ? "no-preference" : "reduce";
info(`Click the ${oppositePreference} motion preference emulation button`);
radioButtonToEnable.click();
await waitFor(() => radioButtonToEnable.checked);
checkEmulationButtonsStatus(inspector, oppositePreference);
await waitFor(() => divHasOppositeToDefaultStyling());
is(
getRuleViewAncestorRulesDataTextByIndex(view, 1),
`@media (prefers-reduced-motion: ${oppositePreference}) {`,
`The rules view was updated with the rule from the prefers-reduced-motion: ${oppositePreference} media query`
);
info("Select the node from the remote iframe");
await selectNodeInFrames(["iframe", "div"], inspector);
ok(
await divHasOppositeToDefaultStyling(),
"The opposite motion preference emulation is also applied on the remote iframe"
);
is(
getRuleViewAncestorRulesDataTextByIndex(view, 1),
`@media (prefers-reduced-motion: ${oppositePreference}) {`,
`Media queries information are displayed for ${oppositePreference}`
);
info("Select the top-level div again");
await selectNode("div", inspector);
info(`Click the ${defaultPreference} motion preference emulation button`);
radioButtonToReset.click();
await waitFor(() => radioButtonToReset.checked);
checkEmulationButtonsStatus(inspector, defaultPreference);
info("Check that reloading keeps the selected emulation");
await selectNode("div", inspector);
radioButtonToEnable.click();
await waitFor(() => divHasOppositeToDefaultStyling());
await navigateTo(TEST_URI);
await selectNode("div", inspector);
checkEmulationButtonsStatus(inspector, oppositePreference);
await waitFor(() => getRuleViewRuleEditorAt(view, 1));
ok(
await divHasOppositeToDefaultStyling(),
`The ${oppositePreference} motion preference emulation is still active after reloading the page`
);
is(
getRuleViewAncestorRulesDataTextByIndex(view, 1),
`@media (prefers-reduced-motion: ${oppositePreference}) {`,
`The ${oppositePreference} media query is displayed on the rule after reloading`
);
await selectNodeInFrames(["iframe", "div"], inspector);
await waitFor(() => divHasOppositeToDefaultStyling());
ok(
true,
`The ${oppositePreference} motion preference emulation is still applied to the iframe after reloading`
);
is(
getRuleViewAncestorRulesDataTextByIndex(view, 1),
`@media (prefers-reduced-motion: ${oppositePreference}) {`,
`The ${oppositePreference} media query is still displayed on the rule for the element in iframe after reloading`
);
info("Click the no emulation button to disable motion preference emulation");
noEmulationRadioButton.click();
await waitFor(() => noEmulationRadioButton.checked);
checkEmulationButtonsStatus(inspector, "none");
await waitFor(() => divHasDefaultPreferenceStyling());
ok(
true,
"The rules view was updated with the rule from the prefers-reduced-motion media query for the current OS preference"
);
is(
getRuleViewAncestorRulesDataTextByIndex(view, 1),
`@media (prefers-reduced-motion: ${defaultPreference}) {`,
`Media queries information are displayed for ${defaultPreference}`
);
info("Select the node from the remote iframe");
await selectNodeInFrames(["iframe", "div"], inspector);
ok(
await divHasDefaultPreferenceStyling(),
"The current motion preference emulation is also applied on the remote iframe"
);
is(
getRuleViewAncestorRulesDataTextByIndex(view, 1),
`@media (prefers-reduced-motion: ${defaultPreference}) {`,
`Media queries information are displayed for ${defaultPreference} on the remote iframe`
);
info(
`Click the ${oppositePreference} motion preference emulation button again, so it can be checked that closing DevTools resets the emulation`
);
radioButtonToEnable.click();
await waitFor(() => divHasOppositeToDefaultStyling());
info("Check that closing DevTools resets the motion preference emulation");
await toolbox.destroy();
const matchesPrefersReducedMotion = await SpecialPowers.spawn(
gBrowser.selectedBrowser,
[],
() => content.matchMedia("(prefers-reduced-motion: reduce)").matches
);
is(
matchesPrefersReducedMotion,
defaultPrefersReduced,
"Prefers-reduced-motion emulation is disabled after closing DevTools"
);
});
function checkEmulationButtonsStatus(inspector, expectedEmulation) {
const reduceRadioButton = inspector.panelDoc.querySelector(
"#reduced-motion-emulation-reduce"
);
const noPreferenceRadioButton = inspector.panelDoc.querySelector(
"#reduced-motion-emulation-no-preference"
);
const noEmulationButton = inspector.panelDoc.querySelector(
"#reduced-motion-emulation-none"
);
const isReduceEmulationExpected = expectedEmulation === "reduce";
const isNoPreferenceEmulationExpected = expectedEmulation === "no-preference";
const isNoEmulationExpected = expectedEmulation === "none";
is(
reduceRadioButton.checked,
isReduceEmulationExpected,
`The reduce button ${isReduceEmulationExpected ? "is" : "isn't"} pressed`
);
is(
noPreferenceRadioButton.checked,
isNoPreferenceEmulationExpected,
`The no preference button ${isNoPreferenceEmulationExpected ? "is" : "isn't"} pressed`
);
is(
noEmulationButton.checked,
isNoEmulationExpected,
`The no emulation button ${isNoEmulationExpected ? "is" : "isn't"} pressed`
);
}
\"","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/resource/tests/browser_resources_target_switching.js#8"}},"S_js_typescript_devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"\"data:text/html;charset=utf-8,\"","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/resource/tests/browser_resources_unwatch_early.js#11"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_animations_playback_rate_multiplier.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_color_scheme.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_custom_user_agent.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_dppx.js#8"}},"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js/TEST_URI.":{"sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js/TEST_URI.","pretty":"TEST_URI","meta":{"structured":1,"pretty":"TEST_URI","sym":"S_js_typescript_devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js/TEST_URI.","js_sym":"#TEST_URI","type_pretty":"string","kind":"field","subsystem":"DevTools/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target-configuration/tests/browser_target_configuration_command_touch_events.js#8"}},"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#destroy().":{"sym":"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#destroy().","pretty":"TargetCommand::destroy","meta":{"structured":1,"pretty":"TargetCommand::destroy","sym":"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target/target-command.js#1232"}},"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#navigateTo().":{"sym":"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#navigateTo().","pretty":"TargetCommand::navigateTo","meta":{"structured":1,"pretty":"TargetCommand::navigateTo","sym":"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#navigateTo().","js_sym":"#navigateTo","type_pretty":"any","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/commands/target/target-command.js/TargetCommand#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/target/target-command.js#1109"}},"S_js_typescript_devtools/shared/commands/tracer/tracer-command.js/TracerCommand#destroy().":{"sym":"S_js_typescript_devtools/shared/commands/tracer/tracer-command.js/TracerCommand#destroy().","pretty":"TracerCommand::destroy","meta":{"structured":1,"pretty":"TracerCommand::destroy","sym":"S_js_typescript_devtools/shared/commands/tracer/tracer-command.js/TracerCommand#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/commands/tracer/tracer-command.js/TracerCommand#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/commands/tracer/tracer-command.js#39"}},"S_js_typescript_devtools/shared/discovery/discovery.js/Transport#destroy().":{"sym":"S_js_typescript_devtools/shared/discovery/discovery.js/Transport#destroy().","pretty":"Transport::destroy","meta":{"structured":1,"pretty":"Transport::destroy","sym":"S_js_typescript_devtools/shared/discovery/discovery.js/Transport#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/discovery/discovery.js/Transport#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/discovery/discovery.js#98"}},"S_js_typescript_devtools/shared/discovery/tests/xpcshell/test_discovery.js/TestTransport#destroy().":{"sym":"S_js_typescript_devtools/shared/discovery/tests/xpcshell/test_discovery.js/TestTransport#destroy().","pretty":"TestTransport::destroy","meta":{"structured":1,"pretty":"TestTransport::destroy","sym":"S_js_typescript_devtools/shared/discovery/tests/xpcshell/test_discovery.js/TestTransport#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/discovery/tests/xpcshell/test_discovery.js/TestTransport#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/discovery/tests/xpcshell/test_discovery.js#49"}},"S_js_typescript_devtools/shared/heapsnapshot/HeapAnalysesClient.js/HeapAnalysesClient.prototype.destroy().":{"sym":"S_js_typescript_devtools/shared/heapsnapshot/HeapAnalysesClient.js/HeapAnalysesClient.prototype.destroy().","pretty":"HeapAnalysesClient::prototype::destroy","meta":{"structured":1,"pretty":"HeapAnalysesClient::prototype::destroy","sym":"S_js_typescript_devtools/shared/heapsnapshot/HeapAnalysesClient.js/HeapAnalysesClient.prototype.destroy().","js_sym":"#destroy","type_pretty":"(method) destroyany","kind":"method","subsystem":"DevTools/Memory","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/heapsnapshot/HeapAnalysesClient.js#34"}},"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js/ok().":{"sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js/ok().","pretty":"ok","meta":{"structured":1,"pretty":"ok","sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js/ok().","js_sym":"#ok","type_pretty":"void","kind":"method","subsystem":"DevTools/Memory","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/heapsnapshot/tests/xpcshell/dominator-tree-worker.js#36"}},"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js/ok().":{"sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js/ok().","pretty":"ok","meta":{"structured":1,"pretty":"ok","sym":"S_js_typescript_devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js/ok().","js_sym":"#ok","type_pretty":"void","kind":"method","subsystem":"DevTools/Memory","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/heapsnapshot/tests/xpcshell/heap-snapshot-worker.js#34"}},"S_js_typescript_devtools/shared/protocol/Actor.js/Actor#destroy().":{"sym":"S_js_typescript_devtools/shared/protocol/Actor.js/Actor#destroy().","pretty":"Actor::destroy","meta":{"structured":1,"pretty":"Actor::destroy","sym":"S_js_typescript_devtools/shared/protocol/Actor.js/Actor#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/Actor.js/Actor#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#destroy()."}],"props":[],"overriddenBy":["S_js_typescript_devtools/server/actors/resources/storage/local-and-session-storage.js/LocalOrSessionStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/indexed-db.js/IndexedDBStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/cookies.js/CookiesStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/index.js/BaseStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/extension-storage.js/ExtensionStorageActor#destroy().","S_js_typescript_devtools/server/actors/string.js/exports.LongStringActor#destroy().","S_js_typescript_devtools/server/actors/page-style.js/PageStyleActor#destroy().","S_js_typescript_devtools/server/actors/root.js/RootActor#destroy().","S_js_typescript_devtools/server/actors/network-monitor/network-event-actor.js/NetworkEventActor#destroy().","S_js_typescript_devtools/server/actors/targets/content-process.js/ContentProcessTargetActor#destroy().","S_js_typescript_devtools/server/actors/targets/worker.js/WorkerTargetActor#destroy().","S_js_typescript_devtools/server/actors/targets/window-global.js/WindowGlobalTargetActor#destroy().","S_js_typescript_devtools/server/actors/targets/content-script.js/WebExtensionContentScriptTargetActor#destroy().","S_js_typescript_devtools/server/actors/addon/webextension-inspected-window.js/WebExtensionInspectedWindowActor#destroy().","S_js_typescript_devtools/server/actors/memory.js/exports.MemoryActor#destroy().","S_js_typescript_devtools/server/actors/style-rule.js/StyleRuleActor#destroy().","S_js_typescript_devtools/server/actors/object/symbol.js/SymbolActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/accessibility.js/AccessibilityActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/simulator.js/SimulatorActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/parent-accessibility.js/ParentAccessibilityActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/walker.js/AccessibleWalkerActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/accessible.js/AccessibleActor#destroy().","S_js_typescript_devtools/server/actors/worker/push-subscription.js/PushSubscriptionActor#destroy().","S_js_typescript_devtools/server/actors/worker/service-worker.js/ServiceWorkerActor#destroy().","S_js_typescript_devtools/server/actors/worker/service-worker-registration.js/ServiceWorkerRegistrationActor#destroy().","S_js_typescript_devtools/server/actors/style-sheets.js/StyleSheetsActor#destroy().","S_js_typescript_devtools/server/actors/changes.js/ChangesActor#destroy().","S_js_typescript_devtools/server/actors/reflow.js/exports.ReflowActor#destroy().","S_js_typescript_devtools/server/actors/watcher.js/exports.WatcherActor#destroy().","S_js_typescript_devtools/server/actors/frame.js/FrameActor#destroy().","S_js_typescript_devtools/server/actors/device.js/exports.DeviceActor#destroy().","S_js_typescript_devtools/server/actors/webconsole.js/WebConsoleActor#destroy().","S_js_typescript_devtools/server/actors/pause-scoped.js/PauseScopedObjectActor#destroy().","S_js_typescript_devtools/server/actors/inspector/walker.js/WalkerActor#destroy().","S_js_typescript_devtools/server/actors/inspector/inspector.js/InspectorActor#destroy().","S_js_typescript_devtools/server/actors/inspector/node.js/NodeActor#destroy().","S_js_typescript_devtools/server/actors/environment.js/EnvironmentActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/tab.js/TabDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/worker.js/WorkerDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/process.js/ProcessDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/webextension.js/WebExtensionDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/animation.js/AnimationActor#destroy().","S_js_typescript_devtools/server/actors/animation.js/exports.AnimationsActor#destroy().","S_js_typescript_devtools/server/actors/target-configuration.js/TargetConfigurationActor#destroy().","S_js_typescript_devtools/server/actors/emulation/responsive.js/ResponsiveActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/FlexboxActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/FlexItemActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/GridActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/LayoutActor#destroy().","S_js_typescript_devtools/server/actors/tracer.js/TracerActor#destroy().","S_js_typescript_devtools/server/actors/perf.js/exports.PerfActor#destroy().","S_js_typescript_devtools/server/actors/thread.js/ThreadActor#destroy().","S_js_typescript_devtools/server/actors/source.js/SourceActor#destroy().","S_js_typescript_devtools/server/actors/compatibility/compatibility.js/CompatibilityActor#destroy().","S_js_typescript_devtools/server/tests/browser/browser_connectToFrame.js/#20"],"variants":[]},"jumps":{"def":"devtools/shared/protocol/Actor.js#96"}},"S_js_typescript_devtools/shared/protocol/Front.js/Front#destroy().":{"sym":"S_js_typescript_devtools/shared/protocol/Front.js/Front#destroy().","pretty":"Front::destroy","meta":{"structured":1,"pretty":"Front::destroy","sym":"S_js_typescript_devtools/shared/protocol/Front.js/Front#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/Front.js/Front#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#destroy()."}],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/protocol/Front.js#84"}},"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#destroy().":{"sym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#destroy().","pretty":"Pool::destroy","meta":{"structured":1,"pretty":"Pool::destroy","sym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_devtools/server/actors/resources/storage/local-and-session-storage.js/LocalOrSessionStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/indexed-db.js/IndexedDBStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/cookies.js/CookiesStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/index.js/BaseStorageActor#destroy().","S_js_typescript_devtools/server/actors/resources/storage/extension-storage.js/ExtensionStorageActor#destroy().","S_js_typescript_devtools/server/actors/string.js/exports.LongStringActor#destroy().","S_js_typescript_devtools/server/actors/page-style.js/PageStyleActor#destroy().","S_js_typescript_devtools/server/actors/root.js/RootActor#destroy().","S_js_typescript_devtools/server/actors/network-monitor/network-event-actor.js/NetworkEventActor#destroy().","S_js_typescript_devtools/server/actors/targets/content-process.js/ContentProcessTargetActor#destroy().","S_js_typescript_devtools/server/actors/targets/worker.js/WorkerTargetActor#destroy().","S_js_typescript_devtools/server/actors/targets/window-global.js/WindowGlobalTargetActor#destroy().","S_js_typescript_devtools/server/actors/targets/content-script.js/WebExtensionContentScriptTargetActor#destroy().","S_js_typescript_devtools/server/actors/addon/webextension-inspected-window.js/WebExtensionInspectedWindowActor#destroy().","S_js_typescript_devtools/server/actors/memory.js/exports.MemoryActor#destroy().","S_js_typescript_devtools/server/actors/style-rule.js/StyleRuleActor#destroy().","S_js_typescript_devtools/server/actors/object/symbol.js/SymbolActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/accessibility.js/AccessibilityActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/simulator.js/SimulatorActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/parent-accessibility.js/ParentAccessibilityActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/walker.js/AccessibleWalkerActor#destroy().","S_js_typescript_devtools/server/actors/accessibility/accessible.js/AccessibleActor#destroy().","S_js_typescript_devtools/server/actors/worker/push-subscription.js/PushSubscriptionActor#destroy().","S_js_typescript_devtools/server/actors/worker/service-worker.js/ServiceWorkerActor#destroy().","S_js_typescript_devtools/server/actors/worker/service-worker-registration.js/ServiceWorkerRegistrationActor#destroy().","S_js_typescript_devtools/server/actors/style-sheets.js/StyleSheetsActor#destroy().","S_js_typescript_devtools/server/actors/changes.js/ChangesActor#destroy().","S_js_typescript_devtools/server/actors/reflow.js/exports.ReflowActor#destroy().","S_js_typescript_devtools/server/actors/watcher.js/exports.WatcherActor#destroy().","S_js_typescript_devtools/server/actors/frame.js/FrameActor#destroy().","S_js_typescript_devtools/server/actors/device.js/exports.DeviceActor#destroy().","S_js_typescript_devtools/server/actors/webconsole.js/WebConsoleActor#destroy().","S_js_typescript_devtools/server/actors/pause-scoped.js/PauseScopedObjectActor#destroy().","S_js_typescript_devtools/server/actors/inspector/walker.js/WalkerActor#destroy().","S_js_typescript_devtools/server/actors/inspector/inspector.js/InspectorActor#destroy().","S_js_typescript_devtools/server/actors/inspector/node.js/NodeActor#destroy().","S_js_typescript_devtools/server/actors/environment.js/EnvironmentActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/tab.js/TabDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/worker.js/WorkerDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/process.js/ProcessDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/descriptors/webextension.js/WebExtensionDescriptorActor#destroy().","S_js_typescript_devtools/server/actors/animation.js/AnimationActor#destroy().","S_js_typescript_devtools/server/actors/animation.js/exports.AnimationsActor#destroy().","S_js_typescript_devtools/server/actors/target-configuration.js/TargetConfigurationActor#destroy().","S_js_typescript_devtools/server/actors/emulation/responsive.js/ResponsiveActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/FlexboxActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/FlexItemActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/GridActor#destroy().","S_js_typescript_devtools/server/actors/layout.js/LayoutActor#destroy().","S_js_typescript_devtools/server/actors/tracer.js/TracerActor#destroy().","S_js_typescript_devtools/server/actors/perf.js/exports.PerfActor#destroy().","S_js_typescript_devtools/server/actors/thread.js/ThreadActor#destroy().","S_js_typescript_devtools/server/actors/source.js/SourceActor#destroy().","S_js_typescript_devtools/server/actors/compatibility/compatibility.js/CompatibilityActor#destroy().","S_js_typescript_devtools/server/tests/browser/browser_connectToFrame.js/#20","S_js_typescript_devtools/server/tests/xpcshell/test_connection_closes_all_pools.js/FakeActor#destroy().","S_js_typescript_devtools/shared/protocol/Front.js/Front#destroy().","S_js_typescript_devtools/shared/protocol/Actor.js/Actor#destroy()."],"variants":[]},"jumps":{"def":"devtools/shared/protocol/Pool.js#185"}},"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#has().":{"sym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#has().","pretty":"Pool::has","meta":{"structured":1,"pretty":"Pool::has","sym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#has().","js_sym":"#has","type_pretty":"null","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/Pool.js/Pool#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/protocol/Pool.js#127"}},"S_js_typescript_devtools/shared/protocol/lazy-pool.js/LazyActor#destroy().":{"sym":"S_js_typescript_devtools/shared/protocol/lazy-pool.js/LazyActor#destroy().","pretty":"LazyActor::destroy","meta":{"structured":1,"pretty":"LazyActor::destroy","sym":"S_js_typescript_devtools/shared/protocol/lazy-pool.js/LazyActor#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/lazy-pool.js/LazyActor#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/protocol/lazy-pool.js#197"}},"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildActor#destroy().":{"sym":"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildActor#destroy().","pretty":"ChildActor::destroy","meta":{"structured":1,"pretty":"ChildActor::destroy","sym":"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildActor#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildActor#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/protocol/tests/xpcshell/test_protocol_children.js#103"}},"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildFront#destroy().":{"sym":"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildFront#destroy().","pretty":"ChildFront::destroy","meta":{"structured":1,"pretty":"ChildFront::destroy","sym":"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildFront#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/protocol/tests/xpcshell/test_protocol_children.js/ChildFront#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/protocol/tests/xpcshell/test_protocol_children.js#167"}},"S_js_typescript_devtools/shared/security/socket.js/ServerSocketConnection#destroy().":{"sym":"S_js_typescript_devtools/shared/security/socket.js/ServerSocketConnection#destroy().","pretty":"ServerSocketConnection::destroy","meta":{"structured":1,"pretty":"ServerSocketConnection::destroy","sym":"S_js_typescript_devtools/shared/security/socket.js/ServerSocketConnection#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/security/socket.js/ServerSocketConnection#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/security/socket.js#685"}},"S_js_typescript_devtools/shared/transport/packets.js/Packet#destroy().":{"sym":"S_js_typescript_devtools/shared/transport/packets.js/Packet#destroy().","pretty":"Packet::destroy","meta":{"structured":1,"pretty":"Packet::destroy","sym":"S_js_typescript_devtools/shared/transport/packets.js/Packet#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/General","parentsym":"S_js_typescript_devtools/shared/transport/packets.js/Packet#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/shared/transport/packets.js#91"}},"S_js_typescript_editor.js/Editor#destroy().":{"sym":"S_js_typescript_editor.js/Editor#destroy().","pretty":"Editor::destroy","meta":{"structured":1,"pretty":"Editor::destroy","sym":"S_js_typescript_editor.js/Editor#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/Source Editor","parentsym":"S_js_typescript_editor.js/Editor#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/client/shared/sourceeditor/editor.js#4246"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#checked.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#checked.","pretty":"AccessibleNode::checked","meta":{"structured":1,"pretty":"AccessibleNode::checked","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#checked.","js_sym":"#checked","type_pretty":"string | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AccessibleNode_checked"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8058"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#has().","pretty":"AccessibleNode::has","meta":{"structured":1,"pretty":"AccessibleNode::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#has().","js_sym":"#has","type_pretty":"string[]) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AccessibleNode_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8140"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#is().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#is().","pretty":"AccessibleNode::is","meta":{"structured":1,"pretty":"AccessibleNode::is","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#is().","js_sym":"#is","type_pretty":"string[]) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/AccessibleNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_AccessibleNode_is"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#8142"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#content.","pretty":"CSSStyleProperties::content","meta":{"structured":1,"pretty":"CSSStyleProperties::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#content.","js_sym":"#content","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CSSStyleProperties#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CSSStyleProperties_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#11045"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CacheStorage#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CacheStorage#has().","pretty":"CacheStorage::has","meta":{"structured":1,"pretty":"CacheStorage::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CacheStorage#has().","js_sym":"#has","type_pretty":"string) => Promise","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CacheStorage#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CacheStorage_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#12140"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/CloseWatcher#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CloseWatcher#destroy().","pretty":"CloseWatcher::destroy","meta":{"structured":1,"pretty":"CloseWatcher::destroy","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CloseWatcher#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/CloseWatcher#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_CloseWatcher_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#12996"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#info().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#info().","pretty":"Console::info","meta":{"structured":1,"pretty":"Console::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#info().","js_sym":"#info","type_pretty":"any[]) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Console#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_console_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43322"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#info().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#info().","pretty":"ConsoleInstance::info","meta":{"structured":1,"pretty":"ConsoleInstance::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#info().","js_sym":"#info","type_pretty":"any[]) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ConsoleInstance#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ConsoleInstance_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#13126"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ContentFrameMessageManager#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ContentFrameMessageManager#content.","pretty":"ContentFrameMessageManager::content","meta":{"structured":1,"pretty":"ContentFrameMessageManager::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ContentFrameMessageManager#content.","js_sym":"#content","type_pretty":"WindowProxy | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ContentFrameMessageManager#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ContentFrameMessageManager_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#13180"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#matches().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#matches().","pretty":"Element::matches","meta":{"structured":1,"pretty":"Element::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#matches().","js_sym":"#matches","type_pretty":"boolean; }","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Element#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Element_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#is.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#is.","pretty":"ElementCreationOptions::is","meta":{"structured":1,"pretty":"ElementCreationOptions::is","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#is.","js_sym":"#is","type_pretty":"string | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ElementCreationOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ElementCreationOptions_is"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#1395"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceSet#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceSet#has().","pretty":"FontFaceSet::has","meta":{"structured":1,"pretty":"FontFaceSet::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceSet#has().","js_sym":"#has","type_pretty":"FontFace) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FontFaceSet#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FontFaceSet_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16393"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/FormData#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FormData#has().","pretty":"FormData::has","meta":{"structured":1,"pretty":"FormData::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FormData#has().","js_sym":"#has","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/FormData#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_FormData_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16448"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#info.","pretty":"GPUAdapter::info","meta":{"structured":1,"pretty":"GPUAdapter::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#info.","js_sym":"#info","type_pretty":"GPUAdapterInfo","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUAdapter#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUAdapter_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16594"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUBuffer#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUBuffer#destroy().","pretty":"GPUBuffer::destroy","meta":{"structured":1,"pretty":"GPUBuffer::destroy","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUBuffer#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUBuffer#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUBuffer_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16699"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUDevice#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUDevice#destroy().","pretty":"GPUDevice::destroy","meta":{"structured":1,"pretty":"GPUDevice::destroy","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUDevice#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUDevice#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUDevice_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#16924"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUQuerySet#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUQuerySet#destroy().","pretty":"GPUQuerySet::destroy","meta":{"structured":1,"pretty":"GPUQuerySet::destroy","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUQuerySet#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUQuerySet#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUQuerySet_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#17072"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassColorAttachment#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassColorAttachment#view.","pretty":"GPURenderPassColorAttachment::view","meta":{"structured":1,"pretty":"GPURenderPassColorAttachment::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassColorAttachment#view.","js_sym":"#view","type_pretty":"GPUTexture | GPUTextureView","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassColorAttachment#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPURenderPassColorAttachment_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2040"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassDepthStencilAttachment#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassDepthStencilAttachment#view.","pretty":"GPURenderPassDepthStencilAttachment::view","meta":{"structured":1,"pretty":"GPURenderPassDepthStencilAttachment::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassDepthStencilAttachment#view.","js_sym":"#view","type_pretty":"GPUTexture | GPUTextureView","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPURenderPassDepthStencilAttachment#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPURenderPassDepthStencilAttachment_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2061"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#destroy().","pretty":"GPUTexture::destroy","meta":{"structured":1,"pretty":"GPUTexture::destroy","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/GPUTexture#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_GPUTexture_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#17351"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click().","pretty":"HTMLElement::click","meta":{"structured":1,"pretty":"HTMLElement::click","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click().","js_sym":"#click","type_pretty":"(method) click() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLElement_click"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#click().","S_js_typescript_toolkit/content/widgets/moz-box-button/moz-box-button.mjs/MozBoxButton#click().","S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#click().","S_js_typescript_toolkit/content/widgets/moz-button/moz-button.mjs/MozButton#click()."],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19082"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#checked.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#checked.","pretty":"HTMLInputElement::checked","meta":{"structured":1,"pretty":"HTMLInputElement::checked","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#checked.","js_sym":"#checked","type_pretty":"boolean","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLInputElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLInputElement_checked"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#19549"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#content.","pretty":"HTMLMetaElement::content","meta":{"structured":1,"pretty":"HTMLMetaElement::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#content.","js_sym":"#content","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLMetaElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLMetaElement_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20128"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTemplateElement#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTemplateElement#content.","pretty":"HTMLTemplateElement::content","meta":{"structured":1,"pretty":"HTMLTemplateElement::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTemplateElement#content.","js_sym":"#content","type_pretty":"DocumentFragment","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLTemplateElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLTemplateElement_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#20983"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Headers#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Headers#has().","pretty":"Headers::has","meta":{"structured":1,"pretty":"Headers::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Headers#has().","js_sym":"#has","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Headers#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Headers_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#21298"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/LlamaChatMessage#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/LlamaChatMessage#content.","pretty":"LlamaChatMessage::content","meta":{"structured":1,"pretty":"LlamaChatMessage::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/LlamaChatMessage#content.","js_sym":"#content","type_pretty":"string","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/LlamaChatMessage#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_LlamaChatMessage_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#2956"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSBytes#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSBytes#content.","pretty":"MLSBytes::content","meta":{"structured":1,"pretty":"MLSBytes::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSBytes#content.","js_sym":"#content","type_pretty":"Uint8Array","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSBytes#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MLSBytes_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3190"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSReceived#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSReceived#content.","pretty":"MLSReceived::content","meta":{"structured":1,"pretty":"MLSReceived::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSReceived#content.","js_sym":"#content","type_pretty":"Uint8Array | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MLSReceived#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MLSReceived_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3249"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MatchGlob#matches().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MatchGlob#matches().","pretty":"MatchGlob::matches","meta":{"structured":1,"pretty":"MatchGlob::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MatchGlob#matches().","js_sym":"#matches","type_pretty":"boolean; }","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MatchGlob#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MatchGlob_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaKeyStatusMap#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaKeyStatusMap#has().","pretty":"MediaKeyStatusMap::has","meta":{"structured":1,"pretty":"MediaKeyStatusMap::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaKeyStatusMap#has().","js_sym":"#has","type_pretty":"BufferSource) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaKeyStatusMap#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaKeyStatusMap_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24554"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryList#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryList#matches.","pretty":"MediaQueryList::matches","meta":{"structured":1,"pretty":"MediaQueryList::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryList#matches.","js_sym":"#matches","type_pretty":"boolean","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryList#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaQueryList_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24650"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEvent#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEvent#matches.","pretty":"MediaQueryListEvent::matches","meta":{"structured":1,"pretty":"MediaQueryListEvent::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEvent#matches.","js_sym":"#matches","type_pretty":"boolean","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaQueryListEvent_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#24675"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEventInit#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEventInit#matches.","pretty":"MediaQueryListEventInit::matches","meta":{"structured":1,"pretty":"MediaQueryListEventInit::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEventInit#matches.","js_sym":"#matches","type_pretty":"boolean | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MediaQueryListEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MediaQueryListEventInit_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3529"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcher#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcher#matches.","pretty":"MozDocumentMatcher::matches","meta":{"structured":1,"pretty":"MozDocumentMatcher::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcher#matches.","js_sym":"#matches","type_pretty":"MatchPatternSet","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcher#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MozDocumentMatcher_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#25388"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcherInit#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcherInit#matches.","pretty":"MozDocumentMatcherInit::matches","meta":{"structured":1,"pretty":"MozDocumentMatcherInit::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcherInit#matches.","js_sym":"#matches","type_pretty":"MatchPatternSetOrStringSequence","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozDocumentMatcherInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MozDocumentMatcherInit_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#3897"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/MozSharedMap#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozSharedMap#has().","pretty":"MozSharedMap::has","meta":{"structured":1,"pretty":"MozSharedMap::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozSharedMap#has().","js_sym":"#has","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/MozSharedMap#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_MozSharedMap_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#25502"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#info.","pretty":"NavigateEvent::info","meta":{"structured":1,"pretty":"NavigateEvent::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#info.","js_sym":"#info","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_NavigateEvent_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#25686"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#info.","pretty":"NavigateEventInit::info","meta":{"structured":1,"pretty":"NavigateEventInit::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#info.","js_sym":"#info","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigateEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_NavigateEventInit_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4008"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#info.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#info.","pretty":"NavigationOptions::info","meta":{"structured":1,"pretty":"NavigationOptions::info","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#info.","js_sym":"#info","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/NavigationOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_NavigationOptions_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#4046"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#querySelector().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#querySelector().","pretty":"ParentNode::querySelector","meta":{"structured":1,"pretty":"ParentNode::querySelector","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#querySelector().","js_sym":"#querySelector","type_pretty":"MathMLElementTagNameMap[K] | null; ...","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ParentNode#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ParentNode_querySelector"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#selectNode().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#selectNode().","pretty":"Range::selectNode","meta":{"structured":1,"pretty":"Range::selectNode","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#selectNode().","js_sym":"#selectNode","type_pretty":"Node) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Range#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Range_selectNode"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#29221"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/ReadableStreamBYOBRequest#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ReadableStreamBYOBRequest#view.","pretty":"ReadableStreamBYOBRequest::view","meta":{"structured":1,"pretty":"ReadableStreamBYOBRequest::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ReadableStreamBYOBRequest#view.","js_sym":"#view","type_pretty":"ArrayBufferView | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/ReadableStreamBYOBRequest#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_ReadableStreamBYOBRequest_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#29332"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#ok.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#ok.","pretty":"Response::ok","meta":{"structured":1,"pretty":"Response::ok","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#ok.","js_sym":"#ok","type_pretty":"boolean","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Response#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Response_ok"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#29550"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/StylePropertyMapReadOnly#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/StylePropertyMapReadOnly#has().","pretty":"StylePropertyMapReadOnly::has","meta":{"structured":1,"pretty":"StylePropertyMapReadOnly::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/StylePropertyMapReadOnly#has().","js_sym":"#has","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/StylePropertyMapReadOnly#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_StylePropertyMapReadOnly_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#33637"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeEvent#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeEvent#view.","pretty":"TimeEvent::view","meta":{"structured":1,"pretty":"TimeEvent::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeEvent#view.","js_sym":"#view","type_pretty":"WindowProxy | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/TimeEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_TimeEvent_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#34839"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEvent#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEvent#view.","pretty":"UIEvent::view","meta":{"structured":1,"pretty":"UIEvent::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEvent#view.","js_sym":"#view","type_pretty":"WindowProxy | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEvent#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_UIEvent_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#35418"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEventInit#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEventInit#view.","pretty":"UIEventInit::view","meta":{"structured":1,"pretty":"UIEventInit::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEventInit#view.","js_sym":"#view","type_pretty":"Window | null | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/UIEventInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_UIEventInit_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#6997"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/URLSearchParams#has().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/URLSearchParams#has().","pretty":"URLSearchParams::has","meta":{"structured":1,"pretty":"URLSearchParams::has","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/URLSearchParams#has().","js_sym":"#has","type_pretty":"string | undefined) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/URLSearchParams#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_URLSearchParams_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#35542"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WebAccessibleResourceInit#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebAccessibleResourceInit#matches.","pretty":"WebAccessibleResourceInit::matches","meta":{"structured":1,"pretty":"WebAccessibleResourceInit::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebAccessibleResourceInit#matches.","js_sym":"#matches","type_pretty":"MatchPatternSetOrStringSequence | null | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WebAccessibleResourceInit#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WebAccessibleResourceInit_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7354"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#content.","pretty":"Window::content","meta":{"structured":1,"pretty":"Window::content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#content.","js_sym":"#content","type_pretty":"any","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40759"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#matchMedia().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#matchMedia().","pretty":"Window::matchMedia","meta":{"structured":1,"pretty":"Window::matchMedia","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#matchMedia().","js_sym":"#matchMedia","type_pretty":"string) => MediaQueryList | null","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/Window#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_matchMedia"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#40959"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowActorOptions#matches.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowActorOptions#matches.","pretty":"WindowActorOptions::matches","meta":{"structured":1,"pretty":"WindowActorOptions::matches","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowActorOptions#matches.","js_sym":"#matches","type_pretty":"string[] | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/WindowActorOptions#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_WindowActorOptions_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#7598"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/XULElement#click().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XULElement#click().","pretty":"XULElement::click","meta":{"structured":1,"pretty":"XULElement::click","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XULElement#click().","js_sym":"#click","type_pretty":"(method) click() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XULElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_XULElement_click"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#42286"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/XULTreeElement#view.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XULTreeElement#view.","pretty":"XULTreeElement::view","meta":{"structured":1,"pretty":"XULTreeElement::view","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XULTreeElement#view.","js_sym":"#view","type_pretty":"nsITreeView | null","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.dom.d.ts/XULTreeElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_XULTreeElement_view"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#42458"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/content.":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/content.","pretty":"content","meta":{"structured":1,"pretty":"content","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/content.","js_sym":"#content","type_pretty":"any","kind":"field","subsystem":"Core/General","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#43874"}},"S_js_typescript_generated/lib.gecko.dom.d.ts/matchMedia().":{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/matchMedia().","pretty":"matchMedia","meta":{"structured":1,"pretty":"matchMedia","sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/matchMedia().","js_sym":"#matchMedia","type_pretty":"MediaQueryList | null","kind":"method","subsystem":"Core/General","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_Window_matchMedia"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.dom.d.ts#44075"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#contextualManager.typeLiteral456:passwordsEnabled.GleanEventWithExtras:typeLiteral457:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#contextualManager.typeLiteral456:passwordsEnabled.GleanEventWithExtras:typeLiteral457:checked.","pretty":"GleanImpl::contextualManager::typeLiteral456::passwordsEnabled::GleanEventWithExtras::typeLiteral457::checked","meta":{"structured":1,"pretty":"GleanImpl::contextualManager::typeLiteral456::passwordsEnabled::GleanEventWithExtras::typeLiteral457::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#contextualManager.typeLiteral456:passwordsEnabled.GleanEventWithExtras:typeLiteral457:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1403"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#contextualServicesTopsites.typeLiteral251:click.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#contextualServicesTopsites.typeLiteral251:click.","pretty":"GleanImpl::contextualServicesTopsites::typeLiteral251::click","meta":{"structured":1,"pretty":"GleanImpl::contextualServicesTopsites::typeLiteral251::click","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#contextualServicesTopsites.typeLiteral251:click.","js_sym":"#click","type_pretty":"Record","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#839"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#linkHandling.typeLiteral499:openNextToActiveTabSettingsChange.GleanEventWithExtras:typeLiteral501:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#linkHandling.typeLiteral499:openNextToActiveTabSettingsChange.GleanEventWithExtras:typeLiteral501:checked.","pretty":"GleanImpl::linkHandling::typeLiteral499::openNextToActiveTabSettingsChange::GleanEventWithExtras::typeLiteral501::checked","meta":{"structured":1,"pretty":"GleanImpl::linkHandling::typeLiteral499::openNextToActiveTabSettingsChange::GleanEventWithExtras::typeLiteral501::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#linkHandling.typeLiteral499:openNextToActiveTabSettingsChange.GleanEventWithExtras:typeLiteral501:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1484"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#messagingSystemAttribution.typeLiteral105:content.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#messagingSystemAttribution.typeLiteral105:content.","pretty":"GleanImpl::messagingSystemAttribution::typeLiteral105::content","meta":{"structured":1,"pretty":"GleanImpl::messagingSystemAttribution::typeLiteral105::content","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#messagingSystemAttribution.typeLiteral105:content.","js_sym":"#content","type_pretty":"GleanString","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#388"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#microsurveyAttribution.typeLiteral107:content.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#microsurveyAttribution.typeLiteral107:content.","pretty":"GleanImpl::microsurveyAttribution::typeLiteral107::content","meta":{"structured":1,"pretty":"GleanImpl::microsurveyAttribution::typeLiteral107::content","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#microsurveyAttribution.typeLiteral107:content.","js_sym":"#content","type_pretty":"GleanString","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#434"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#newtabContent.typeLiteral306:click.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#newtabContent.typeLiteral306:click.","pretty":"GleanImpl::newtabContent::typeLiteral306::click","meta":{"structured":1,"pretty":"GleanImpl::newtabContent::typeLiteral306::click","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#newtabContent.typeLiteral306:click.","js_sym":"#click","type_pretty":"string | ... 1 more ... | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#930"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#newtabSearchAd.typeLiteral424:click.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#newtabSearchAd.typeLiteral424:click.","pretty":"GleanImpl::newtabSearchAd::typeLiteral424::click","meta":{"structured":1,"pretty":"GleanImpl::newtabSearchAd::typeLiteral424::click","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#newtabSearchAd.typeLiteral424:click.","js_sym":"#click","type_pretty":"string | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1255"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pdfjsImageAltText.typeLiteral1239:info.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pdfjsImageAltText.typeLiteral1239:info.","pretty":"GleanImpl::pdfjsImageAltText::typeLiteral1239::info","meta":{"structured":1,"pretty":"GleanImpl::pdfjsImageAltText::typeLiteral1239::info","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pdfjsImageAltText.typeLiteral1239:info.","js_sym":"#info","type_pretty":"string | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#6731"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pocket.typeLiteral321:click.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pocket.typeLiteral321:click.","pretty":"GleanImpl::pocket::typeLiteral321::click","meta":{"structured":1,"pretty":"GleanImpl::pocket::typeLiteral321::click","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#pocket.typeLiteral321:click.","js_sym":"#click","type_pretty":"string | ... 1 more ... | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#956"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#privacyUiFppClick.typeLiteral360:checkbox.GleanEventWithExtras:typeLiteral361:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#privacyUiFppClick.typeLiteral360:checkbox.GleanEventWithExtras:typeLiteral361:checked.","pretty":"GleanImpl::privacyUiFppClick::typeLiteral360::checkbox::GleanEventWithExtras::typeLiteral361::checked","meta":{"structured":1,"pretty":"GleanImpl::privacyUiFppClick::typeLiteral360::checkbox::GleanEventWithExtras::typeLiteral361::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#privacyUiFppClick.typeLiteral360:checkbox.GleanEventWithExtras:typeLiteral361:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1037"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:bookmarksEnabled.GleanEventWithExtras:typeLiteral482:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:bookmarksEnabled.GleanEventWithExtras:typeLiteral482:checked.","pretty":"GleanImpl::sidebarCustomize::typeLiteral481::bookmarksEnabled::GleanEventWithExtras::typeLiteral482::checked","meta":{"structured":1,"pretty":"GleanImpl::sidebarCustomize::typeLiteral481::bookmarksEnabled::GleanEventWithExtras::typeLiteral482::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:bookmarksEnabled.GleanEventWithExtras:typeLiteral482:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1447"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:chatbotEnabled.GleanEventWithExtras:typeLiteral483:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:chatbotEnabled.GleanEventWithExtras:typeLiteral483:checked.","pretty":"GleanImpl::sidebarCustomize::typeLiteral481::chatbotEnabled::GleanEventWithExtras::typeLiteral483::checked","meta":{"structured":1,"pretty":"GleanImpl::sidebarCustomize::typeLiteral481::chatbotEnabled::GleanEventWithExtras::typeLiteral483::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:chatbotEnabled.GleanEventWithExtras:typeLiteral483:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1448"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:expandOnHoverEnabled.GleanEventWithExtras:typeLiteral484:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:expandOnHoverEnabled.GleanEventWithExtras:typeLiteral484:checked.","pretty":"GleanImpl::sidebarCustomize::typeLiteral481::expandOnHoverEnabled::GleanEventWithExtras::typeLiteral484::checked","meta":{"structured":1,"pretty":"GleanImpl::sidebarCustomize::typeLiteral481::expandOnHoverEnabled::GleanEventWithExtras::typeLiteral484::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:expandOnHoverEnabled.GleanEventWithExtras:typeLiteral484:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1449"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:historyEnabled.GleanEventWithExtras:typeLiteral485:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:historyEnabled.GleanEventWithExtras:typeLiteral485:checked.","pretty":"GleanImpl::sidebarCustomize::typeLiteral481::historyEnabled::GleanEventWithExtras::typeLiteral485::checked","meta":{"structured":1,"pretty":"GleanImpl::sidebarCustomize::typeLiteral481::historyEnabled::GleanEventWithExtras::typeLiteral485::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:historyEnabled.GleanEventWithExtras:typeLiteral485:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1452"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:syncedTabsEnabled.GleanEventWithExtras:typeLiteral489:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:syncedTabsEnabled.GleanEventWithExtras:typeLiteral489:checked.","pretty":"GleanImpl::sidebarCustomize::typeLiteral481::syncedTabsEnabled::GleanEventWithExtras::typeLiteral489::checked","meta":{"structured":1,"pretty":"GleanImpl::sidebarCustomize::typeLiteral481::syncedTabsEnabled::GleanEventWithExtras::typeLiteral489::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:syncedTabsEnabled.GleanEventWithExtras:typeLiteral489:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1457"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:tabsDisplay.GleanEventWithExtras:typeLiteral490:checked.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:tabsDisplay.GleanEventWithExtras:typeLiteral490:checked.","pretty":"GleanImpl::sidebarCustomize::typeLiteral481::tabsDisplay::GleanEventWithExtras::typeLiteral490::checked","meta":{"structured":1,"pretty":"GleanImpl::sidebarCustomize::typeLiteral481::tabsDisplay::GleanEventWithExtras::typeLiteral490::checked","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#sidebarCustomize.typeLiteral481:tabsDisplay.GleanEventWithExtras:typeLiteral490:checked.","js_sym":"#checked","type_pretty":"string | boolean | undefined","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1458"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#tabgroup.typeLiteral510:addTab.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#tabgroup.typeLiteral510:addTab.","pretty":"GleanImpl::tabgroup::typeLiteral510::addTab","meta":{"structured":1,"pretty":"GleanImpl::tabgroup::typeLiteral510::addTab","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#tabgroup.typeLiteral510:addTab.","js_sym":"#addTab","type_pretty":"string | number | undefined; }>","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#1511"}},"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#topsites.typeLiteral327:click.":{"sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#topsites.typeLiteral327:click.","pretty":"GleanImpl::topsites::typeLiteral327::click","meta":{"structured":1,"pretty":"GleanImpl::topsites::typeLiteral327::click","sym":"S_js_typescript_generated/lib.gecko.glean.d.ts/GleanImpl#topsites.typeLiteral327:click.","js_sym":"#click","type_pretty":"string | ....","kind":"field","subsystem":"Core/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.glean.d.ts#970"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBaseWindow#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBaseWindow#destroy().","pretty":"nsIBaseWindow::destroy","meta":{"structured":1,"pretty":"nsIBaseWindow::destroy","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBaseWindow#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBaseWindow#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIBaseWindow_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#22217"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpRequest#content.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpRequest#content.","pretty":"nsIBinaryHttpRequest::content","meta":{"structured":1,"pretty":"nsIBinaryHttpRequest::content","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpRequest#content.","js_sym":"#content","type_pretty":"number[]","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpRequest#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIBinaryHttpRequest_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#14741"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpResponse#content.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpResponse#content.","pretty":"nsIBinaryHttpResponse::content","meta":{"structured":1,"pretty":"nsIBinaryHttpResponse::content","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpResponse#content.","js_sym":"#content","type_pretty":"number[]","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIBinaryHttpResponse#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIBinaryHttpResponse_content"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#14753"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICascadeFilter#has().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICascadeFilter#has().","pretty":"nsICascadeFilter::has","meta":{"structured":1,"pretty":"nsICascadeFilter::has","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICascadeFilter#has().","js_sym":"#has","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsICascadeFilter#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsICascadeFilter_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#2401"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#info.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#info.","pretty":"nsIConsoleMessage::info","meta":{"structured":1,"pretty":"nsIConsoleMessage::info","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#info.","js_sym":"#info","type_pretty":"1 | undefined","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIConsoleMessage#","slotOwner":{"slotKind":"const","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIConsoleMessage_info"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#23562"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDOMXULButtonElement#checked.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDOMXULButtonElement#checked.","pretty":"nsIDOMXULButtonElement::checked","meta":{"structured":1,"pretty":"nsIDOMXULButtonElement::checked","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDOMXULButtonElement#checked.","js_sym":"#checked","type_pretty":"boolean","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDOMXULButtonElement#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIDOMXULButtonElement_checked"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#7471"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocumentViewer#destroy().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocumentViewer#destroy().","pretty":"nsIDocumentViewer::destroy","meta":{"structured":1,"pretty":"nsIDocumentViewer::destroy","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocumentViewer#destroy().","js_sym":"#destroy","type_pretty":"(method) destroy() => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIDocumentViewer#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIDocumentViewer_destroy"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#3129"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServerIdentity#has().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServerIdentity#has().","pretty":"nsIHttpServerIdentity::has","meta":{"structured":1,"pretty":"nsIHttpServerIdentity::has","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServerIdentity#has().","js_sym":"#has","type_pretty":"number) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIHttpServerIdentity#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIHttpServerIdentity_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#19171"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIKeyValueDatabase#has().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIKeyValueDatabase#has().","pretty":"nsIKeyValueDatabase::has","meta":{"structured":1,"pretty":"nsIKeyValueDatabase::has","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIKeyValueDatabase#has().","js_sym":"#has","type_pretty":"string) => void","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIKeyValueDatabase#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIKeyValueDatabase_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#9383"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsILoginInfo#matches().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsILoginInfo#matches().","pretty":"nsILoginInfo::matches","meta":{"structured":1,"pretty":"nsILoginInfo::matches","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsILoginInfo#matches().","js_sym":"#matches","type_pretty":"boolean) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsILoginInfo#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsILoginInfo_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#9823"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPermission#matches().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPermission#matches().","pretty":"nsIPermission::matches","meta":{"structured":1,"pretty":"nsIPermission::matches","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPermission#matches().","js_sym":"#matches","type_pretty":"boolean) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIPermission#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIPermission_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#12140"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperties#has().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperties#has().","pretty":"nsIProperties::has","meta":{"structured":1,"pretty":"nsIProperties::has","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperties#has().","js_sym":"#has","type_pretty":"string) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIProperties#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIProperties_has"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#24171"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierCacheEntry#matches.":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierCacheEntry#matches.","pretty":"nsIUrlClassifierCacheEntry::matches","meta":{"structured":1,"pretty":"nsIUrlClassifierCacheEntry::matches","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierCacheEntry#matches.","js_sym":"#matches","type_pretty":"nsIArray","kind":"field","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierCacheEntry#","slotOwner":{"slotKind":"attribute","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIUrlClassifierCacheEntry_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#21512"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionList#matches().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionList#matches().","pretty":"nsIUrlClassifierExceptionList::matches","meta":{"structured":1,"pretty":"nsIUrlClassifierExceptionList::matches","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionList#matches().","js_sym":"#matches","type_pretty":"boolean) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionList#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIUrlClassifierExceptionList_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#21225"}},"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionListEntry#matches().":{"sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionListEntry#matches().","pretty":"nsIUrlClassifierExceptionListEntry::matches","meta":{"structured":1,"pretty":"nsIUrlClassifierExceptionListEntry::matches","sym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionListEntry#matches().","js_sym":"#matches","type_pretty":"boolean) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_generated/lib.gecko.xpcom.d.ts/global/nsIUrlClassifierExceptionListEntry#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"XPIDL_nsIUrlClassifierExceptionListEntry_matches"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/generated/lib.gecko.xpcom.d.ts#21255"}},"S_js_typescript_lib.gecko.tweaks.d.ts/ChannelWrapper#matches().":{"sym":"S_js_typescript_lib.gecko.tweaks.d.ts/ChannelWrapper#matches().","pretty":"ChannelWrapper::matches","meta":{"structured":1,"pretty":"ChannelWrapper::matches","sym":"S_js_typescript_lib.gecko.tweaks.d.ts/ChannelWrapper#matches().","js_sym":"#matches","type_pretty":"MozRequestMatchOptions | undefined) => boolean","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_lib.gecko.tweaks.d.ts/ChannelWrapper#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"tools/@types/lib.gecko.tweaks.d.ts#90"}},"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPattern#matches().":{"sym":"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPattern#matches().","pretty":"MatchPattern::matches","meta":{"structured":1,"pretty":"MatchPattern::matches","sym":"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPattern#matches().","js_sym":"#matches","type_pretty":"boolean; }","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPattern#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPatternSet#matches().":{"sym":"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPatternSet#matches().","pretty":"MatchPatternSet::matches","meta":{"structured":1,"pretty":"MatchPatternSet::matches","sym":"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPatternSet#matches().","js_sym":"#matches","type_pretty":"boolean; }","kind":"method","subsystem":"Core/General","parentsym":"S_js_typescript_lib.gecko.tweaks.d.ts/MatchPatternSet#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]}},"S_js_typescript_modules/ASRouterNewTabHook.sys.mjs/ASRouterNewTabHookInstance#destroy().":{"sym":"S_js_typescript_modules/ASRouterNewTabHook.sys.mjs/ASRouterNewTabHookInstance#destroy().","pretty":"ASRouterNewTabHookInstance::destroy","meta":{"structured":1,"pretty":"ASRouterNewTabHookInstance::destroy","sym":"S_js_typescript_modules/ASRouterNewTabHook.sys.mjs/ASRouterNewTabHookInstance#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Firefox/Messaging System","parentsym":"S_js_typescript_modules/ASRouterNewTabHook.sys.mjs/ASRouterNewTabHookInstance#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"browser/components/asrouter/modules/ASRouterNewTabHook.sys.mjs#52"}},"S_js_typescript_panel/panel.js/PerformancePanel#destroy().":{"sym":"S_js_typescript_panel/panel.js/PerformancePanel#destroy().","pretty":"PerformancePanel::destroy","meta":{"structured":1,"pretty":"PerformancePanel::destroy","sym":"S_js_typescript_panel/panel.js/PerformancePanel#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"DevTools/Performance Tools (Profiler/Timeline)","parentsym":"S_js_typescript_panel/panel.js/PerformancePanel#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"devtools/client/performance-new/panel/panel.js#97"}},"S_js_typescript_src/api/ElementHandle.ts/BoxModel#content.":{"sym":"S_js_typescript_src/api/ElementHandle.ts/BoxModel#content.","pretty":"BoxModel::content","meta":{"structured":1,"pretty":"BoxModel::content","sym":"S_js_typescript_src/api/ElementHandle.ts/BoxModel#content.","js_sym":"#content","type_pretty":"Quad","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/ElementHandle.ts/BoxModel#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/ElementHandle.ts#51"}},"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#click().":{"sym":"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#click().","pretty":"ElementHandle::click","meta":{"structured":1,"pretty":"ElementHandle::click","sym":"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/ElementHandle.ts/ElementHandle#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/ElementHandle.ts#768"}},"S_js_typescript_src/api/Frame.ts/Frame#click().":{"sym":"S_js_typescript_src/api/Frame.ts/Frame#click().","pretty":"Frame::click","meta":{"structured":1,"pretty":"Frame::click","sym":"S_js_typescript_src/api/Frame.ts/Frame#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Frame.ts/Frame#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Frame.ts#1058"}},"S_js_typescript_src/api/Frame.ts/Frame#content().":{"sym":"S_js_typescript_src/api/Frame.ts/Frame#content().","pretty":"Frame::content","meta":{"structured":1,"pretty":"Frame::content","sym":"S_js_typescript_src/api/Frame.ts/Frame#content().","js_sym":"#content","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Frame.ts/Frame#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Frame.ts#799"}},"S_js_typescript_src/api/Frame.ts/FrameAddScriptTagOptions#content.":{"sym":"S_js_typescript_src/api/Frame.ts/FrameAddScriptTagOptions#content.","pretty":"FrameAddScriptTagOptions::content","meta":{"structured":1,"pretty":"FrameAddScriptTagOptions::content","sym":"S_js_typescript_src/api/Frame.ts/FrameAddScriptTagOptions#content.","js_sym":"#content","type_pretty":"string | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Frame.ts/FrameAddScriptTagOptions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Frame.ts#139"}},"S_js_typescript_src/api/Frame.ts/FrameAddStyleTagOptions#content.":{"sym":"S_js_typescript_src/api/Frame.ts/FrameAddStyleTagOptions#content.","pretty":"FrameAddStyleTagOptions::content","meta":{"structured":1,"pretty":"FrameAddStyleTagOptions::content","sym":"S_js_typescript_src/api/Frame.ts/FrameAddStyleTagOptions#content.","js_sym":"#content","type_pretty":"string | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Frame.ts/FrameAddStyleTagOptions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Frame.ts#168"}},"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#content().":{"sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#content().","pretty":"HTTPResponse::content","meta":{"structured":1,"pretty":"HTTPResponse::content","sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#content().","js_sym":"#content","type_pretty":"Promise>","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_src/bidi/HTTPResponse.ts/BidiHTTPResponse#content().","S_js_typescript_src/cdp/HTTPResponse.ts/CdpHTTPResponse#content()."],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/HTTPResponse.ts#92"}},"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#ok().":{"sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#ok().","pretty":"HTTPResponse::ok","meta":{"structured":1,"pretty":"HTTPResponse::ok","sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#ok().","js_sym":"#ok","type_pretty":"boolean","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/HTTPResponse.ts#48"}},"S_js_typescript_src/api/Input.ts/Mouse#click().":{"sym":"S_js_typescript_src/api/Input.ts/Mouse#click().","pretty":"Mouse::click","meta":{"structured":1,"pretty":"Mouse::click","sym":"S_js_typescript_src/api/Input.ts/Mouse#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Input.ts/Mouse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_src/bidi/Input.ts/BidiMouse#click().","S_js_typescript_src/cdp/Input.ts/CdpMouse#click()."],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Input.ts#396"}},"S_js_typescript_src/api/Page.ts/Page#click().":{"sym":"S_js_typescript_src/api/Page.ts/Page#click().","pretty":"Page::click","meta":{"structured":1,"pretty":"Page::click","sym":"S_js_typescript_src/api/Page.ts/Page#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Page.ts/Page#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Page.ts#2818"}},"S_js_typescript_src/api/Page.ts/Page#content().":{"sym":"S_js_typescript_src/api/Page.ts/Page#content().","pretty":"Page::content","meta":{"structured":1,"pretty":"Page::content","sym":"S_js_typescript_src/api/Page.ts/Page#content().","js_sym":"#content","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/Page.ts/Page#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/Page.ts#1738"}},"S_js_typescript_src/api/locators/locators.ts/Locator#click().":{"sym":"S_js_typescript_src/api/locators/locators.ts/Locator#click().","pretty":"Locator::click","meta":{"structured":1,"pretty":"Locator::click","sym":"S_js_typescript_src/api/locators/locators.ts/Locator#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/api/locators/locators.ts/Locator#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/api/locators/locators.ts#703"}},"S_js_typescript_src/bidi/HTTPResponse.ts/BidiHTTPResponse#content().":{"sym":"S_js_typescript_src/bidi/HTTPResponse.ts/BidiHTTPResponse#content().","pretty":"BidiHTTPResponse::content","meta":{"structured":1,"pretty":"BidiHTTPResponse::content","sym":"S_js_typescript_src/bidi/HTTPResponse.ts/BidiHTTPResponse#content().","js_sym":"#content","type_pretty":"Promise>","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/HTTPResponse.ts/BidiHTTPResponse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#content()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/HTTPResponse.ts#159"}},"S_js_typescript_src/bidi/Input.ts/BidiMouse#click().":{"sym":"S_js_typescript_src/bidi/Input.ts/BidiMouse#click().","pretty":"BidiMouse::click","meta":{"structured":1,"pretty":"BidiMouse::click","sym":"S_js_typescript_src/bidi/Input.ts/BidiMouse#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/Input.ts/BidiMouse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/api/Input.ts/Mouse#click()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/Input.ts#531"}},"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#info.":{"sym":"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#info.","pretty":"UserPrompt::info","meta":{"structured":1,"pretty":"UserPrompt::info","sym":"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#info.","js_sym":"#info","type_pretty":"Bidi.BrowsingContext.UserPromptOpenedParameters","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/bidi/core/UserPrompt.ts/UserPrompt#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/bidi/core/UserPrompt.ts#56"}},"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#checked.":{"sym":"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#checked.","pretty":"SerializedAXNode::checked","meta":{"structured":1,"pretty":"SerializedAXNode::checked","sym":"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#checked.","js_sym":"#checked","type_pretty":"boolean | \"mixed\" | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Accessibility.ts/SerializedAXNode#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Accessibility.ts#62"}},"S_js_typescript_src/cdp/HTTPResponse.ts/CdpHTTPResponse#content().":{"sym":"S_js_typescript_src/cdp/HTTPResponse.ts/CdpHTTPResponse#content().","pretty":"CdpHTTPResponse::content","meta":{"structured":1,"pretty":"CdpHTTPResponse::content","sym":"S_js_typescript_src/cdp/HTTPResponse.ts/CdpHTTPResponse#content().","js_sym":"#content","type_pretty":"Promise>","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/HTTPResponse.ts/CdpHTTPResponse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/api/HTTPResponse.ts/HTTPResponse#content()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/HTTPResponse.ts#119"}},"S_js_typescript_src/cdp/Input.ts/CdpMouse#click().":{"sym":"S_js_typescript_src/cdp/Input.ts/CdpMouse#click().","pretty":"CdpMouse::click","meta":{"structured":1,"pretty":"CdpMouse::click","sym":"S_js_typescript_src/cdp/Input.ts/CdpMouse#click().","js_sym":"#click","type_pretty":"Promise","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/cdp/Input.ts/CdpMouse#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_src/api/Input.ts/Mouse#click()."}],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/cdp/Input.ts#435"}},"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#querySelector.","pretty":"ARIAQueryHandler::querySelector","meta":{"structured":1,"pretty":"ARIAQueryHandler::querySelector","sym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/AriaQueryHandler.ts/ARIAQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/AriaQueryHandler.ts#65"}},"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#querySelector.","pretty":"CSSQueryHandler::querySelector","meta":{"structured":1,"pretty":"CSSQueryHandler::querySelector","sym":"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"string) => AsyncIterable<...>; }>) =>...","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/CSSQueryHandler.ts/CSSQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/CSSQueryHandler.ts#15"}},"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#querySelector.","pretty":"PQueryHandler::querySelector","meta":{"structured":1,"pretty":"PQueryHandler::querySelector","sym":"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PQueryHandler.ts/PQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PQueryHandler.ts#24"}},"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#querySelector.","pretty":"PierceQueryHandler::querySelector","meta":{"structured":1,"pretty":"PierceQueryHandler::querySelector","sym":"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"string) => AsyncIterable<...>; }>)...","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/PierceQueryHandler.ts/PierceQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/PierceQueryHandler.ts#15"}},"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#querySelector.","pretty":"QueryHandler::querySelector","meta":{"structured":1,"pretty":"QueryHandler::querySelector","sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector | undefined","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/QueryHandler.ts#52"}},"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#waitFor().":{"sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#waitFor().","pretty":"QueryHandler::waitFor","meta":{"structured":1,"pretty":"QueryHandler::waitFor","sym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#waitFor().","js_sym":"#waitFor","type_pretty":"Promise<...>","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/QueryHandler.ts/QueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/QueryHandler.ts#148"}},"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#querySelector.":{"sym":"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#querySelector.","pretty":"XPathQueryHandler::querySelector","meta":{"structured":1,"pretty":"XPathQueryHandler::querySelector","sym":"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#querySelector.","js_sym":"#querySelector","type_pretty":"QuerySelector","kind":"field","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/common/XPathQueryHandler.ts/XPathQueryHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/common/XPathQueryHandler.ts#25"}},"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#querySelector().":{"sym":"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#querySelector().","pretty":"CustomQuerySelector::querySelector","meta":{"structured":1,"pretty":"CustomQuerySelector::querySelector","sym":"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#querySelector().","js_sym":"#querySelector","type_pretty":"string) => Awaitable","kind":"method","subsystem":"Remote Protocol/Agent","parentsym":"S_js_typescript_src/injected/CustomQuerySelector.ts/CustomQuerySelector#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"remote/test/puppeteer/packages/puppeteer-core/src/injected/CustomQuerySelector.ts#14"}},"S_js_typescript_toolkit/actors/PictureInPictureChild.sys.mjs/PictureInPictureChildVideoWrapper#destroy().":{"sym":"S_js_typescript_toolkit/actors/PictureInPictureChild.sys.mjs/PictureInPictureChildVideoWrapper#destroy().","pretty":"PictureInPictureChildVideoWrapper::destroy","meta":{"structured":1,"pretty":"PictureInPictureChildVideoWrapper::destroy","sym":"S_js_typescript_toolkit/actors/PictureInPictureChild.sys.mjs/PictureInPictureChildVideoWrapper#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/Picture-in-Picture","parentsym":"S_js_typescript_toolkit/actors/PictureInPictureChild.sys.mjs/PictureInPictureChildVideoWrapper#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/actors/PictureInPictureChild.sys.mjs#3125"}},"S_js_typescript_toolkit/actors/PopupAndRedirectBlockingParent.sys.mjs/PopupAndRedirectBlocker#destroy().":{"sym":"S_js_typescript_toolkit/actors/PopupAndRedirectBlockingParent.sys.mjs/PopupAndRedirectBlocker#destroy().","pretty":"PopupAndRedirectBlocker::destroy","meta":{"structured":1,"pretty":"PopupAndRedirectBlocker::destroy","sym":"S_js_typescript_toolkit/actors/PopupAndRedirectBlockingParent.sys.mjs/PopupAndRedirectBlocker#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/General","parentsym":"S_js_typescript_toolkit/actors/PopupAndRedirectBlockingParent.sys.mjs/PopupAndRedirectBlocker#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/actors/PopupAndRedirectBlockingParent.sys.mjs#257"}},"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/ArkoseLabsHandler#matches().":{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/ArkoseLabsHandler#matches().","pretty":"ArkoseLabsHandler::matches","meta":{"structured":1,"pretty":"ArkoseLabsHandler::matches","sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/ArkoseLabsHandler#matches().","js_sym":"#matches","type_pretty":"any","kind":"method","subsystem":"Core/Privacy/Anti-Tracking","parentsym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/ArkoseLabsHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs#467"}},"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CFTurnstileHandler#matches().":{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CFTurnstileHandler#matches().","pretty":"CFTurnstileHandler::matches","meta":{"structured":1,"pretty":"CFTurnstileHandler::matches","sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CFTurnstileHandler#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"Core/Privacy/Anti-Tracking","parentsym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CFTurnstileHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs#204"}},"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches().":{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches().","pretty":"CaptchaHandler::matches","meta":{"structured":1,"pretty":"CaptchaHandler::matches","sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches().","js_sym":"#matches","type_pretty":"void","kind":"method","subsystem":"Core/Privacy/Anti-Tracking","parentsym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/GoogleRecaptchaV2Handler#matches().","S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CFTurnstileHandler#matches().","S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/DatadomeHandler#matches().","S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/HCaptchaHandler#matches().","S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/ArkoseLabsHandler#matches()."],"variants":[]},"jumps":{"def":"toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs#41"}},"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/DatadomeHandler#matches().":{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/DatadomeHandler#matches().","pretty":"DatadomeHandler::matches","meta":{"structured":1,"pretty":"DatadomeHandler::matches","sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/DatadomeHandler#matches().","js_sym":"#matches","type_pretty":"any","kind":"method","subsystem":"Core/Privacy/Anti-Tracking","parentsym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/DatadomeHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs#315"}},"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/GoogleRecaptchaV2Handler#matches().":{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/GoogleRecaptchaV2Handler#matches().","pretty":"GoogleRecaptchaV2Handler::matches","meta":{"structured":1,"pretty":"GoogleRecaptchaV2Handler::matches","sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/GoogleRecaptchaV2Handler#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"Core/Privacy/Anti-Tracking","parentsym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/GoogleRecaptchaV2Handler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs#107"}},"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/HCaptchaHandler#matches().":{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/HCaptchaHandler#matches().","pretty":"HCaptchaHandler::matches","meta":{"structured":1,"pretty":"HCaptchaHandler::matches","sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/HCaptchaHandler#matches().","js_sym":"#matches","type_pretty":"any","kind":"method","subsystem":"Core/Privacy/Anti-Tracking","parentsym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/HCaptchaHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs/CaptchaHandler#matches()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/captchadetection/CaptchaDetectionChild.sys.mjs#368"}},"S_js_typescript_toolkit/components/extensions/ExtensionChildDevToolsUtils.sys.mjs/ThemeChangeObserver#destroy().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionChildDevToolsUtils.sys.mjs/ThemeChangeObserver#destroy().","pretty":"ThemeChangeObserver::destroy","meta":{"structured":1,"pretty":"ThemeChangeObserver::destroy","sym":"S_js_typescript_toolkit/components/extensions/ExtensionChildDevToolsUtils.sys.mjs/ThemeChangeObserver#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionChildDevToolsUtils.sys.mjs/ThemeChangeObserver#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionChildDevToolsUtils.sys.mjs#68"}},"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/EventEmitter#has().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/EventEmitter#has().","pretty":"EventEmitter::has","meta":{"structured":1,"pretty":"EventEmitter::has","sym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/EventEmitter#has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/EventEmitter#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionCommon.sys.mjs#254"}},"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/ExtensionAPI#destroy().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/ExtensionAPI#destroy().","pretty":"ExtensionAPI::destroy","meta":{"structured":1,"pretty":"ExtensionAPI::destroy","sym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/ExtensionAPI#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/ExtensionAPI#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionCommon.sys.mjs#374"}},"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/LocaleData().prototype.has().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/LocaleData().prototype.has().","pretty":"LocaleData::prototype::has","meta":{"structured":1,"pretty":"LocaleData::prototype::has","sym":"S_js_typescript_toolkit/components/extensions/ExtensionCommon.sys.mjs/LocaleData().prototype.has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionCommon.sys.mjs#2034"}},"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/LegacyPermissionStore#has().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/LegacyPermissionStore#has().","pretty":"LegacyPermissionStore::has","meta":{"structured":1,"pretty":"LegacyPermissionStore::has","sym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/LegacyPermissionStore#has().","js_sym":"#has","type_pretty":"Promise","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/LegacyPermissionStore#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionPermissions.sys.mjs#74"}},"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/PermissionStore#has().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/PermissionStore#has().","pretty":"PermissionStore::has","meta":{"structured":1,"pretty":"PermissionStore::has","sym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/PermissionStore#has().","js_sym":"#has","type_pretty":"Promise","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionPermissions.sys.mjs/PermissionStore#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionPermissions.sys.mjs#264"}},"S_js_typescript_toolkit/components/extensions/ExtensionShortcuts.sys.mjs/ExtensionShortcutKeyMap#has().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionShortcuts.sys.mjs/ExtensionShortcutKeyMap#has().","pretty":"ExtensionShortcutKeyMap::has","meta":{"structured":1,"pretty":"ExtensionShortcutKeyMap::has","sym":"S_js_typescript_toolkit/components/extensions/ExtensionShortcuts.sys.mjs/ExtensionShortcutKeyMap#has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionShortcuts.sys.mjs/ExtensionShortcutKeyMap#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionShortcuts.sys.mjs#74"}},"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/AOMExtensionWrapper#destroy().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/AOMExtensionWrapper#destroy().","pretty":"AOMExtensionWrapper::destroy","meta":{"structured":1,"pretty":"AOMExtensionWrapper::destroy","sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/AOMExtensionWrapper#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/AOMExtensionWrapper#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/ExtensionWrapper#destroy()."}],"props":[],"overriddenBy":["S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/InstallableWrapper#destroy()."],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs#330"}},"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/ExtensionWrapper#destroy().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/ExtensionWrapper#destroy().","pretty":"ExtensionWrapper::destroy","meta":{"structured":1,"pretty":"ExtensionWrapper::destroy","sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/ExtensionWrapper#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/ExtensionWrapper#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/AOMExtensionWrapper#destroy().","S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/InstallableWrapper#destroy()."],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs#85"}},"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/InstallableWrapper#destroy().":{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/InstallableWrapper#destroy().","pretty":"InstallableWrapper::destroy","meta":{"structured":1,"pretty":"InstallableWrapper::destroy","sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/InstallableWrapper#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/InstallableWrapper#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/AOMExtensionWrapper#destroy()."},{"sym":"S_js_typescript_toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs/ExtensionWrapper#destroy()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ExtensionXPCShellUtils.sys.mjs#492"}},"S_js_typescript_toolkit/components/extensions/MatchURLFilters.sys.mjs/MatchURLFilters#matches().":{"sym":"S_js_typescript_toolkit/components/extensions/MatchURLFilters.sys.mjs/MatchURLFilters#matches().","pretty":"MatchURLFilters::matches","meta":{"structured":1,"pretty":"MatchURLFilters::matches","sym":"S_js_typescript_toolkit/components/extensions/MatchURLFilters.sys.mjs/MatchURLFilters#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/MatchURLFilters.sys.mjs/MatchURLFilters#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/MatchURLFilters.sys.mjs#19"}},"S_js_typescript_toolkit/components/extensions/MessageChannel.sys.mjs/matches().":{"sym":"S_js_typescript_toolkit/components/extensions/MessageChannel.sys.mjs/matches().","pretty":"matches","meta":{"structured":1,"pretty":"matches","sym":"S_js_typescript_toolkit/components/extensions/MessageChannel.sys.mjs/matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/MessageChannel.sys.mjs#118"}},"S_js_typescript_toolkit/components/extensions/MessageManagerProxy.sys.mjs/MessageManagerProxy#matches().":{"sym":"S_js_typescript_toolkit/components/extensions/MessageManagerProxy.sys.mjs/MessageManagerProxy#matches().","pretty":"MessageManagerProxy::matches","meta":{"structured":1,"pretty":"MessageManagerProxy::matches","sym":"S_js_typescript_toolkit/components/extensions/MessageManagerProxy.sys.mjs/MessageManagerProxy#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/MessageManagerProxy.sys.mjs/MessageManagerProxy#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/MessageManagerProxy.sys.mjs#75"}},"S_js_typescript_toolkit/components/extensions/ProxyChannelFilter.sys.mjs/ProxyChannelFilter#destroy().":{"sym":"S_js_typescript_toolkit/components/extensions/ProxyChannelFilter.sys.mjs/ProxyChannelFilter#destroy().","pretty":"ProxyChannelFilter::destroy","meta":{"structured":1,"pretty":"ProxyChannelFilter::destroy","sym":"S_js_typescript_toolkit/components/extensions/ProxyChannelFilter.sys.mjs/ProxyChannelFilter#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/ProxyChannelFilter.sys.mjs/ProxyChannelFilter#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/ProxyChannelFilter.sys.mjs#458"}},"S_js_typescript_toolkit/components/extensions/Schemas.sys.mjs/Namespace#has().":{"sym":"S_js_typescript_toolkit/components/extensions/Schemas.sys.mjs/Namespace#has().","pretty":"Namespace::has","meta":{"structured":1,"pretty":"Namespace::has","sym":"S_js_typescript_toolkit/components/extensions/Schemas.sys.mjs/Namespace#has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/Schemas.sys.mjs/Namespace#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_lib/lib.es2015.collection.d.ts/Map#has()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/Schemas.sys.mjs#3666"}},"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/TabBase#matches().":{"sym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/TabBase#matches().","pretty":"TabBase::matches","meta":{"structured":1,"pretty":"TabBase::matches","sym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/TabBase#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/TabBase#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/types/ext-tabs-base.d.ts#389"}},"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#matches().":{"sym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#matches().","pretty":"WindowBase::matches","meta":{"structured":1,"pretty":"WindowBase::matches","sym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"WebExtensions/General","parentsym":"S_js_typescript_toolkit/components/extensions/types/ext-tabs-base.d.ts/tabs_base/WindowBase#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/types/ext-tabs-base.d.ts#595"}},"S_js_typescript_toolkit/components/extensions/types/extensions.ts/\"resource://testing-common/Assert.sys.mjs\"/Assert/ok.":{"sym":"S_js_typescript_toolkit/components/extensions/types/extensions.ts/\"resource://testing-common/Assert.sys.mjs\"/Assert/ok.","pretty":"ok","meta":{"structured":1,"pretty":"ok","sym":"S_js_typescript_toolkit/components/extensions/types/extensions.ts/\"resource://testing-common/Assert.sys.mjs\"/Assert/ok.","js_sym":"#ok","type_pretty":"any[]) => void","kind":"field","subsystem":"WebExtensions/General","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/extensions/types/extensions.ts#50"}},"S_js_typescript_toolkit/components/formautofill/FormAutofillSync.sys.mjs/AutofillChangeset#has().":{"sym":"S_js_typescript_toolkit/components/formautofill/FormAutofillSync.sys.mjs/AutofillChangeset#has().","pretty":"AutofillChangeset::has","meta":{"structured":1,"pretty":"AutofillChangeset::has","sym":"S_js_typescript_toolkit/components/formautofill/FormAutofillSync.sys.mjs/AutofillChangeset#has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"Toolkit/Form Autofill","parentsym":"S_js_typescript_toolkit/components/formautofill/FormAutofillSync.sys.mjs/AutofillChangeset#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_services/sync/modules/engines.sys.mjs/Changeset#has()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/formautofill/FormAutofillSync.sys.mjs#256"}},"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content().":{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content().","pretty":"AutofillDoorhanger::content","meta":{"structured":1,"pretty":"AutofillDoorhanger::content","sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content().","js_sym":"#content","type_pretty":"any","kind":"method","subsystem":"Toolkit/Form Autofill","parentsym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content()."}],"props":[],"overriddenBy":["S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/CreditCardSaveDoorhanger#content().","S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/PassportSaveDoorhanger#content()."],"variants":[]},"jumps":{"def":"toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs#116"}},"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/CreditCardSaveDoorhanger#content().":{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/CreditCardSaveDoorhanger#content().","pretty":"CreditCardSaveDoorhanger::content","meta":{"structured":1,"pretty":"CreditCardSaveDoorhanger::content","sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/CreditCardSaveDoorhanger#content().","js_sym":"#content","type_pretty":"any","kind":"method","subsystem":"Toolkit/Form Autofill","parentsym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/CreditCardSaveDoorhanger#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content()."},{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content()."},{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/CreditCardSaveDoorhanger#content()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs#902"}},"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/PassportSaveDoorhanger#content().":{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/PassportSaveDoorhanger#content().","pretty":"PassportSaveDoorhanger::content","meta":{"structured":1,"pretty":"PassportSaveDoorhanger::content","sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/PassportSaveDoorhanger#content().","js_sym":"#content","type_pretty":"any","kind":"method","subsystem":"Toolkit/Form Autofill","parentsym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/PassportSaveDoorhanger#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content()."},{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/AutofillDoorhanger#content()."},{"sym":"S_js_typescript_toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs/PassportSaveDoorhanger#content()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/formautofill/default/FormAutofillPrompter.sys.mjs#1096"}},"S_js_typescript_toolkit/components/kvstore/kvstore.sys.mjs/KeyValueDatabase#has().":{"sym":"S_js_typescript_toolkit/components/kvstore/kvstore.sys.mjs/KeyValueDatabase#has().","pretty":"KeyValueDatabase::has","meta":{"structured":1,"pretty":"KeyValueDatabase::has","sym":"S_js_typescript_toolkit/components/kvstore/kvstore.sys.mjs/KeyValueDatabase#has().","js_sym":"#has","type_pretty":"Promise","kind":"method","subsystem":"Core/SQLite and Embedded Database Bindings","parentsym":"S_js_typescript_toolkit/components/kvstore/kvstore.sys.mjs/KeyValueDatabase#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/kvstore/kvstore.sys.mjs#233"}},"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#ok.":{"sym":"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#ok.","pretty":"ProgressAndStatusCallbackParams::ok","meta":{"structured":1,"pretty":"ProgressAndStatusCallbackParams::ok","sym":"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#ok.","js_sym":"#ok","type_pretty":"boolean | null","kind":"field","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/content/Utils.sys.mjs/ProgressAndStatusCallbackParams#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/content/Utils.sys.mjs#164"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#ok().":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#ok().","pretty":"MLPerfAssertions::ok","meta":{"structured":1,"pretty":"MLPerfAssertions::ok","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#ok().","js_sym":"#ok","type_pretty":"string | undefined) => void","kind":"method","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfAssertions#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#319"}},"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#info().":{"sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#info().","pretty":"MLPerfTestContext::info","meta":{"structured":1,"pretty":"MLPerfTestContext::info","sym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#info().","js_sym":"#info","type_pretty":"string) => void","kind":"method","subsystem":"Core/Machine Learning/On Device","parentsym":"S_js_typescript_toolkit/components/ml/ml.d.ts/MLPerfTestContext#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/ml/ml.d.ts#347"}},"S_js_typescript_toolkit/components/nimbus/lib/SharedDataMap.sys.mjs/SharedDataMap#has().":{"sym":"S_js_typescript_toolkit/components/nimbus/lib/SharedDataMap.sys.mjs/SharedDataMap#has().","pretty":"SharedDataMap::has","meta":{"structured":1,"pretty":"SharedDataMap::has","sym":"S_js_typescript_toolkit/components/nimbus/lib/SharedDataMap.sys.mjs/SharedDataMap#has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"Firefox/Nimbus Desktop Client","parentsym":"S_js_typescript_toolkit/components/nimbus/lib/SharedDataMap.sys.mjs/SharedDataMap#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/nimbus/lib/SharedDataMap.sys.mjs#203"}},"S_js_typescript_toolkit/components/normandy/lib/AddonRollouts.sys.mjs/AddonRollouts.has().":{"sym":"S_js_typescript_toolkit/components/normandy/lib/AddonRollouts.sys.mjs/AddonRollouts.has().","pretty":"AddonRollouts::has","meta":{"structured":1,"pretty":"AddonRollouts::has","sym":"S_js_typescript_toolkit/components/normandy/lib/AddonRollouts.sys.mjs/AddonRollouts.has().","js_sym":"#has","type_pretty":"Promise","kind":"method","subsystem":"Firefox/Normandy Client","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/normandy/lib/AddonRollouts.sys.mjs#167"}},"S_js_typescript_toolkit/components/normandy/lib/AddonStudies.sys.mjs/AddonStudies.has().":{"sym":"S_js_typescript_toolkit/components/normandy/lib/AddonStudies.sys.mjs/AddonStudies.has().","pretty":"AddonStudies::has","meta":{"structured":1,"pretty":"AddonStudies::has","sym":"S_js_typescript_toolkit/components/normandy/lib/AddonStudies.sys.mjs/AddonStudies.has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"Firefox/Normandy Client","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/normandy/lib/AddonStudies.sys.mjs#242"}},"S_js_typescript_toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs/PreferenceExperiments.has().":{"sym":"S_js_typescript_toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs/PreferenceExperiments.has().","pretty":"PreferenceExperiments::has","meta":{"structured":1,"pretty":"PreferenceExperiments::has","sym":"S_js_typescript_toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs/PreferenceExperiments.has().","js_sym":"#has","type_pretty":"Promise","kind":"method","subsystem":"Firefox/Normandy Client","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/normandy/lib/PreferenceExperiments.sys.mjs#894"}},"S_js_typescript_toolkit/components/normandy/lib/PreferenceRollouts.sys.mjs/PreferenceRollouts.has().":{"sym":"S_js_typescript_toolkit/components/normandy/lib/PreferenceRollouts.sys.mjs/PreferenceRollouts.has().","pretty":"PreferenceRollouts::has","meta":{"structured":1,"pretty":"PreferenceRollouts::has","sym":"S_js_typescript_toolkit/components/normandy/lib/PreferenceRollouts.sys.mjs/PreferenceRollouts.has().","js_sym":"#has","type_pretty":"boolean","kind":"method","subsystem":"Firefox/Normandy Client","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/normandy/lib/PreferenceRollouts.sys.mjs#275"}},"S_js_typescript_toolkit/components/passwordmgr/LoginInfo.sys.mjs/nsLoginInfo().prototype.matches().":{"sym":"S_js_typescript_toolkit/components/passwordmgr/LoginInfo.sys.mjs/nsLoginInfo().prototype.matches().","pretty":"nsLoginInfo::prototype::matches","meta":{"structured":1,"pretty":"nsLoginInfo::prototype::matches","sym":"S_js_typescript_toolkit/components/passwordmgr/LoginInfo.sys.mjs/nsLoginInfo().prototype.matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"Toolkit/Password Manager","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/passwordmgr/LoginInfo.sys.mjs#83"}},"S_js_typescript_toolkit/components/pdfjs/content/PdfSandbox.sys.mjs/PdfSandbox#destroy().":{"sym":"S_js_typescript_toolkit/components/pdfjs/content/PdfSandbox.sys.mjs/PdfSandbox#destroy().","pretty":"PdfSandbox::destroy","meta":{"structured":1,"pretty":"PdfSandbox::destroy","sym":"S_js_typescript_toolkit/components/pdfjs/content/PdfSandbox.sys.mjs/PdfSandbox#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Firefox/PDF Viewer","parentsym":"S_js_typescript_toolkit/components/pdfjs/content/PdfSandbox.sys.mjs/PdfSandbox#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/pdfjs/content/PdfSandbox.sys.mjs#80"}},"S_js_typescript_toolkit/components/pdfjs/content/build/pdf.sandbox.external.sys.mjs/SandboxSupportBase#destroy().":{"sym":"S_js_typescript_toolkit/components/pdfjs/content/build/pdf.sandbox.external.sys.mjs/SandboxSupportBase#destroy().","pretty":"SandboxSupportBase::destroy","meta":{"structured":1,"pretty":"SandboxSupportBase::destroy","sym":"S_js_typescript_toolkit/components/pdfjs/content/build/pdf.sandbox.external.sys.mjs/SandboxSupportBase#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Firefox/PDF Viewer","parentsym":"S_js_typescript_toolkit/components/pdfjs/content/build/pdf.sandbox.external.sys.mjs/SandboxSupportBase#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/pdfjs/content/build/pdf.sandbox.external.sys.mjs#22"}},"S_js_typescript_toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs/Capture().prototype.destroy().":{"sym":"S_js_typescript_toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs/Capture().prototype.destroy().","pretty":"Capture::prototype::destroy","meta":{"structured":1,"pretty":"Capture::prototype::destroy","sym":"S_js_typescript_toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs/Capture().prototype.destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Firefox/New Tab Page","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/thumbnails/BackgroundPageThumbs.sys.mjs#711"}},"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/LRUCache#matches().":{"sym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/LRUCache#matches().","pretty":"LRUCache::matches","meta":{"structured":1,"pretty":"LRUCache::matches","sym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/LRUCache#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"Firefox/Translations","parentsym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/LRUCache#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/translations/content/translations-document.sys.mjs#279"}},"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationScheduler#destroy().":{"sym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationScheduler#destroy().","pretty":"TranslationScheduler::destroy","meta":{"structured":1,"pretty":"TranslationScheduler::destroy","sym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationScheduler#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Firefox/Translations","parentsym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationScheduler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/translations/content/translations-document.sys.mjs#5974"}},"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationsDocument#destroy().":{"sym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationsDocument#destroy().","pretty":"TranslationsDocument::destroy","meta":{"structured":1,"pretty":"TranslationsDocument::destroy","sym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationsDocument#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Firefox/Translations","parentsym":"S_js_typescript_toolkit/components/translations/content/translations-document.sys.mjs/TranslationsDocument#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/translations/content/translations-document.sys.mjs#2412"}},"S_js_typescript_toolkit/components/uniffi-js/js/UniFFI.sys.mjs/UniFFICallbackHandler#destroy().":{"sym":"S_js_typescript_toolkit/components/uniffi-js/js/UniFFI.sys.mjs/UniFFICallbackHandler#destroy().","pretty":"UniFFICallbackHandler::destroy","meta":{"structured":1,"pretty":"UniFFICallbackHandler::destroy","sym":"S_js_typescript_toolkit/components/uniffi-js/js/UniFFI.sys.mjs/UniFFICallbackHandler#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/UniFFI Bindings","parentsym":"S_js_typescript_toolkit/components/uniffi-js/js/UniFFI.sys.mjs/UniFFICallbackHandler#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/components/uniffi-js/js/UniFFI.sys.mjs#863"}},"S_js_typescript_toolkit/content/preferences/Setting.mjs/Setting#destroy().":{"sym":"S_js_typescript_toolkit/content/preferences/Setting.mjs/Setting#destroy().","pretty":"Setting::destroy","meta":{"structured":1,"pretty":"Setting::destroy","sym":"S_js_typescript_toolkit/content/preferences/Setting.mjs/Setting#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/Preferences","parentsym":"S_js_typescript_toolkit/content/preferences/Setting.mjs/Setting#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/preferences/Setting.mjs#456"}},"S_js_typescript_toolkit/content/widgets/browser-custom-element.mjs/MozBrowser#destroy().":{"sym":"S_js_typescript_toolkit/content/widgets/browser-custom-element.mjs/MozBrowser#destroy().","pretty":"MozBrowser::destroy","meta":{"structured":1,"pretty":"MozBrowser::destroy","sym":"S_js_typescript_toolkit/content/widgets/browser-custom-element.mjs/MozBrowser#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/browser-custom-element.mjs/MozBrowser#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/browser-custom-element.mjs#1159"}},"S_js_typescript_toolkit/content/widgets/colorpicker-common.mjs/ColorPickerCommon#destroy().":{"sym":"S_js_typescript_toolkit/content/widgets/colorpicker-common.mjs/ColorPickerCommon#destroy().","pretty":"ColorPickerCommon::destroy","meta":{"structured":1,"pretty":"ColorPickerCommon::destroy","sym":"S_js_typescript_toolkit/content/widgets/colorpicker-common.mjs/ColorPickerCommon#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/colorpicker-common.mjs/ColorPickerCommon#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"overriddenBy":["S_js_typescript_devtools/client/shared/widgets/Spectrum.js/Spectrum#destroy()."],"variants":[]},"jumps":{"def":"toolkit/content/widgets/colorpicker-common.mjs#264"}},"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#click().":{"sym":"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#click().","pretty":"MozBaseInputElement::click","meta":{"structured":1,"pretty":"MozBaseInputElement::click","sym":"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#click().","js_sym":"#click","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/lit-utils.mjs/MozBaseInputElement#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLElement_click"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/lit-utils.mjs#404"}},"S_js_typescript_toolkit/content/widgets/moz-box-button/moz-box-button.mjs/MozBoxButton#click().":{"sym":"S_js_typescript_toolkit/content/widgets/moz-box-button/moz-box-button.mjs/MozBoxButton#click().","pretty":"MozBoxButton::click","meta":{"structured":1,"pretty":"MozBoxButton::click","sym":"S_js_typescript_toolkit/content/widgets/moz-box-button/moz-box-button.mjs/MozBoxButton#click().","js_sym":"#click","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/moz-box-button/moz-box-button.mjs/MozBoxButton#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLElement_click"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/moz-box-button/moz-box-button.mjs#42"}},"S_js_typescript_toolkit/content/widgets/moz-button/moz-button.mjs/MozButton#click().":{"sym":"S_js_typescript_toolkit/content/widgets/moz-button/moz-button.mjs/MozButton#click().","pretty":"MozButton::click","meta":{"structured":1,"pretty":"MozButton::click","sym":"S_js_typescript_toolkit/content/widgets/moz-button/moz-button.mjs/MozButton#click().","js_sym":"#click","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/moz-button/moz-button.mjs/MozButton#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLElement_click"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/moz-button/moz-button.mjs#314"}},"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#click().":{"sym":"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#click().","pretty":"MozVisualPickerItem::click","meta":{"structured":1,"pretty":"MozVisualPickerItem::click","sym":"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#click().","js_sym":"#click","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs/MozVisualPickerItem#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/moz-visual-picker/moz-visual-picker.mjs#85"}},"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#click().":{"sym":"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#click().","pretty":"PanelItem::click","meta":{"structured":1,"pretty":"PanelItem::click","sym":"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#click().","js_sym":"#click","type_pretty":"void","kind":"method","subsystem":"Toolkit/UI Widgets","parentsym":"S_js_typescript_toolkit/content/widgets/panel-list/panel-list.mjs/PanelItem#","slotOwner":{"slotKind":"method","slotLang":"js","implKind":null,"ownerLang":"idl","sym":"WEBIDL_HTMLElement_click"},"implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[{"sym":"S_js_typescript_generated/lib.gecko.dom.d.ts/HTMLElement#click()."}],"props":[],"variants":[]},"jumps":{"def":"toolkit/content/widgets/panel-list/panel-list.mjs#1083"}},"S_js_typescript_toolkit/modules/Finder.sys.mjs/Finder().prototype.destroy().":{"sym":"S_js_typescript_toolkit/modules/Finder.sys.mjs/Finder().prototype.destroy().","pretty":"Finder::prototype::destroy","meta":{"structured":1,"pretty":"Finder::prototype::destroy","sym":"S_js_typescript_toolkit/modules/Finder.sys.mjs/Finder().prototype.destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/Find Toolbar","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/Finder.sys.mjs#67"}},"S_js_typescript_toolkit/modules/HiddenFrame.sys.mjs/HiddenFrame#destroy().":{"sym":"S_js_typescript_toolkit/modules/HiddenFrame.sys.mjs/HiddenFrame#destroy().","pretty":"HiddenFrame::destroy","meta":{"structured":1,"pretty":"HiddenFrame::destroy","sym":"S_js_typescript_toolkit/modules/HiddenFrame.sys.mjs/HiddenFrame#destroy().","js_sym":"#destroy","type_pretty":"void","kind":"method","subsystem":"Toolkit/General","parentsym":"S_js_typescript_toolkit/modules/HiddenFrame.sys.mjs/HiddenFrame#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/HiddenFrame.sys.mjs#77"}},"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#info().":{"sym":"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#info().","pretty":"Logger::info","meta":{"structured":1,"pretty":"Logger::info","sym":"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#info().","js_sym":"#info","type_pretty":"void","kind":"method","subsystem":"Toolkit/General","parentsym":"S_js_typescript_toolkit/modules/Log.sys.mjs/Logger#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/Log.sys.mjs#398"}},"S_js_typescript_toolkit/modules/RegionLocaleMap.sys.mjs/RegionLocaleMap#matches().":{"sym":"S_js_typescript_toolkit/modules/RegionLocaleMap.sys.mjs/RegionLocaleMap#matches().","pretty":"RegionLocaleMap::matches","meta":{"structured":1,"pretty":"RegionLocaleMap::matches","sym":"S_js_typescript_toolkit/modules/RegionLocaleMap.sys.mjs/RegionLocaleMap#matches().","js_sym":"#matches","type_pretty":"boolean","kind":"method","subsystem":"Toolkit/General","parentsym":"S_js_typescript_toolkit/modules/RegionLocaleMap.sys.mjs/RegionLocaleMap#","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/modules/RegionLocaleMap.sys.mjs#81"}},"S_js_typescript_toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs/AddonTestUtils.info().":{"sym":"S_js_typescript_toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs/AddonTestUtils.info().","pretty":"AddonTestUtils::info","meta":{"structured":1,"pretty":"AddonTestUtils::info","sym":"S_js_typescript_toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs/AddonTestUtils.info().","js_sym":"#info","type_pretty":"void","kind":"method","subsystem":"Toolkit/Add-ons Manager","implKind":"impl","sizeBytes":null,"alignmentBytes":null,"ownVFPtrBytes":null,"bindingSlots":[],"ontologySlots":[],"supers":[],"methods":[],"fields":[],"overrides":[],"props":[],"variants":[]},"jumps":{"def":"toolkit/mozapps/extensions/internal/AddonTestUtils.sys.mjs#508"}},"SpecialPowers#spawn":{"sym":"SpecialPowers#spawn","pretty":"SpecialPowers.spawn"},"content#matchMedia":{"sym":"content#matchMedia","pretty":"content.matchMedia"},"gBrowser#selectedBrowser":{"sym":"gBrowser#selectedBrowser","pretty":"gBrowser.selectedBrowser","jumps":{"def":"browser/base/content/webext-panels.js#150"}},"inspector#panelDoc":{"sym":"inspector#panelDoc","pretty":"inspector.panelDoc"},"noEmulationButton#checked":{"sym":"noEmulationButton#checked","pretty":"noEmulationButton.checked"},"noEmulationRadioButton#checked":{"sym":"noEmulationRadioButton#checked","pretty":"noEmulationRadioButton.checked"},"noEmulationRadioButton#click":{"sym":"noEmulationRadioButton#click","pretty":"noEmulationRadioButton.click"},"noPreferenceRadioButton#checked":{"sym":"noPreferenceRadioButton#checked","pretty":"noPreferenceRadioButton.checked"},"radioButtonToEnable#checked":{"sym":"radioButtonToEnable#checked","pretty":"radioButtonToEnable.checked"},"radioButtonToEnable#click":{"sym":"radioButtonToEnable#click","pretty":"radioButtonToEnable.click"},"radioButtonToReset#checked":{"sym":"radioButtonToReset#checked","pretty":"radioButtonToReset.checked"},"radioButtonToReset#click":{"sym":"radioButtonToReset#click","pretty":"radioButtonToReset.click"},"reduceRadioButton#checked":{"sym":"reduceRadioButton#checked","pretty":"reduceRadioButton.checked"},"toolbox#destroy":{"sym":"toolbox#destroy","pretty":"toolbox.destroy"}};