Bug 1578072 - Port Bug 1572332 "Move non-debugger devtools prefs into all.js" to SeaMonkey. r=frg
This commit is contained in:
Родитель
888d401064
Коммит
2047adf1ee
|
@ -1086,3 +1086,433 @@ pref("security.sandbox.content.tempDirSuffix", "");
|
|||
|
||||
// Url shown when you type moz://a
|
||||
pref("toolkit.mozprotocol.url", "http://www.seamonkey-project.org/");
|
||||
|
||||
// Disable WebIDE and ConnectPage by default (Bug 1539451)
|
||||
pref("devtools.webide.enabled", false);
|
||||
pref("devtools.connectpage.enabled", false);
|
||||
|
||||
// Toolbox preferences
|
||||
pref("devtools.toolbox.footer.height", 250);
|
||||
pref("devtools.toolbox.sidebar.width", 500);
|
||||
pref("devtools.toolbox.host", "bottom");
|
||||
pref("devtools.toolbox.previousHost", "right");
|
||||
pref("devtools.toolbox.selectedTool", "inspector");
|
||||
pref("devtools.toolbox.sideEnabled", true);
|
||||
pref("devtools.toolbox.zoomValue", "1");
|
||||
pref("devtools.toolbox.splitconsoleEnabled", false);
|
||||
pref("devtools.toolbox.splitconsoleHeight", 100);
|
||||
pref("devtools.toolbox.tabsOrder", "");
|
||||
|
||||
// The fission pref is enabling the "Omniscient Browser Toolbox", which will
|
||||
// make it possible to debug anything in Firefox (See Bug 1570639 for more
|
||||
// information).
|
||||
// ⚠ This is a work in progress. Expect weirdness when the pref is enabled. ⚠
|
||||
pref("devtools.browsertoolbox.fission", false);
|
||||
|
||||
// Toolbox Button preferences
|
||||
pref("devtools.command-button-pick.enabled", true);
|
||||
pref("devtools.command-button-frames.enabled", true);
|
||||
pref("devtools.command-button-splitconsole.enabled", true);
|
||||
pref("devtools.command-button-paintflashing.enabled", false);
|
||||
pref("devtools.command-button-scratchpad.enabled", false);
|
||||
pref("devtools.command-button-responsive.enabled", true);
|
||||
pref("devtools.command-button-screenshot.enabled", false);
|
||||
pref("devtools.command-button-rulers.enabled", false);
|
||||
pref("devtools.command-button-measure.enabled", false);
|
||||
pref("devtools.command-button-noautohide.enabled", false);
|
||||
|
||||
// Inspector preferences
|
||||
// Enable the Inspector
|
||||
pref("devtools.inspector.enabled", true);
|
||||
|
||||
// What was the last active sidebar in the inspector
|
||||
pref("devtools.inspector.activeSidebar", "layoutview");
|
||||
pref("devtools.inspector.remote", false);
|
||||
|
||||
// Enable the 3 pane mode in the inspector
|
||||
pref("devtools.inspector.three-pane-enabled", true);
|
||||
// Enable the 3 pane mode in the chrome inspector
|
||||
pref("devtools.inspector.chrome.three-pane-enabled", false);
|
||||
// Collapse pseudo-elements by default in the rule-view
|
||||
pref("devtools.inspector.show_pseudo_elements", false);
|
||||
// The default size for image preview tooltips in the rule-view/computed-view/markup-view
|
||||
pref("devtools.inspector.imagePreviewTooltipSize", 300);
|
||||
// Enable user agent style inspection in rule-view
|
||||
pref("devtools.inspector.showUserAgentStyles", false);
|
||||
// Show all native anonymous content
|
||||
pref("devtools.inspector.showAllAnonymousContent", false);
|
||||
// Show user agent shadow roots
|
||||
pref("devtools.inspector.showUserAgentShadowRoots", false);
|
||||
// Enable the new Rules View
|
||||
pref("devtools.inspector.new-rulesview.enabled", false);
|
||||
|
||||
// Grid highlighter preferences
|
||||
pref("devtools.gridinspector.gridOutlineMaxColumns", 50);
|
||||
pref("devtools.gridinspector.gridOutlineMaxRows", 50);
|
||||
pref("devtools.gridinspector.showGridAreas", false);
|
||||
pref("devtools.gridinspector.showGridLineNumbers", false);
|
||||
pref("devtools.gridinspector.showInfiniteLines", false);
|
||||
// Max number of grid highlighters that can be displayed
|
||||
pref("devtools.gridinspector.maxHighlighters", 3);
|
||||
|
||||
// Whether or not the box model panel is opened in the layout view
|
||||
pref("devtools.layout.boxmodel.opened", true);
|
||||
// Whether or not the flexbox panel is opened in the layout view
|
||||
pref("devtools.layout.flexbox.opened", true);
|
||||
// Whether or not the grid inspector panel is opened in the layout view
|
||||
pref("devtools.layout.grid.opened", true);
|
||||
|
||||
// Enable hovering Box Model values and jumping to their source CSS rule in the
|
||||
// rule-view.
|
||||
#if defined(NIGHTLY_BUILD)
|
||||
pref("devtools.layout.boxmodel.highlightProperty", true);
|
||||
#else
|
||||
pref("devtools.layout.boxmodel.highlightProperty", false);
|
||||
#endif
|
||||
|
||||
// By how many times eyedropper will magnify pixels
|
||||
pref("devtools.eyedropper.zoom", 6);
|
||||
|
||||
// Enable to collapse attributes that are too long.
|
||||
pref("devtools.markup.collapseAttributes", true);
|
||||
// Length to collapse attributes
|
||||
pref("devtools.markup.collapseAttributeLength", 120);
|
||||
// Whether to auto-beautify the HTML on copy.
|
||||
pref("devtools.markup.beautifyOnCopy", false);
|
||||
// Whether or not the DOM mutation breakpoints context menu are enabled in the
|
||||
// markup view.
|
||||
pref("devtools.markup.mutationBreakpoints.enabled", false);
|
||||
|
||||
// DevTools default color unit
|
||||
pref("devtools.defaultColorUnit", "authored");
|
||||
|
||||
// Enable the Memory tools
|
||||
pref("devtools.memory.enabled", true);
|
||||
|
||||
pref("devtools.memory.custom-census-displays", "{}");
|
||||
pref("devtools.memory.custom-label-displays", "{}");
|
||||
pref("devtools.memory.custom-tree-map-displays", "{}");
|
||||
|
||||
pref("devtools.memory.max-individuals", 1000);
|
||||
pref("devtools.memory.max-retaining-paths", 10);
|
||||
|
||||
// Enable the Performance tools
|
||||
pref("devtools.performance.enabled", true);
|
||||
|
||||
// The default Performance UI settings
|
||||
pref("devtools.performance.memory.sample-probability", "0.05");
|
||||
|
||||
// Can't go higher than this without causing internal allocation overflows while
|
||||
// serializing the allocations data over the RDP.
|
||||
pref("devtools.performance.memory.max-log-length", 125000);
|
||||
pref("devtools.performance.timeline.hidden-markers",
|
||||
"[\"Composite\",\"CompositeForwardTransaction\"]");
|
||||
pref("devtools.performance.profiler.buffer-size", 10000000);
|
||||
pref("devtools.performance.profiler.sample-frequency-hz", 1000);
|
||||
pref("devtools.performance.ui.invert-call-tree", true);
|
||||
pref("devtools.performance.ui.invert-flame-graph", false);
|
||||
pref("devtools.performance.ui.flatten-tree-recursion", true);
|
||||
pref("devtools.performance.ui.show-platform-data", false);
|
||||
pref("devtools.performance.ui.show-idle-blocks", true);
|
||||
pref("devtools.performance.ui.enable-memory", false);
|
||||
pref("devtools.performance.ui.enable-allocations", false);
|
||||
pref("devtools.performance.ui.enable-framerate", true);
|
||||
pref("devtools.performance.ui.show-jit-optimizations", false);
|
||||
pref("devtools.performance.ui.show-triggers-for-gc-types",
|
||||
"TOO_MUCH_MALLOC ALLOC_TRIGGER LAST_DITCH EAGER_ALLOC_TRIGGER");
|
||||
|
||||
// Temporary pref disabling memory flame views
|
||||
// TODO remove once we have flame charts via bug 1148663
|
||||
pref("devtools.performance.ui.enable-memory-flame", false);
|
||||
|
||||
// Enable experimental options in the UI only in Nightly
|
||||
#if defined(NIGHTLY_BUILD)
|
||||
pref("devtools.performance.ui.experimental", true);
|
||||
#else
|
||||
pref("devtools.performance.ui.experimental", false);
|
||||
#endif
|
||||
|
||||
// Preferences for the new performance panel. This pref configures the base URL
|
||||
// for the profiler.firefox.com instance to use. This is useful so that a
|
||||
// developer can change it while working on profiler.firefox.com, or in tests.
|
||||
// This isn't exposed directly to the user.
|
||||
pref("devtools.performance.recording.ui-base-url", "https://profiler.firefox.com");
|
||||
|
||||
// A JSON array of strings, where each string is a file path to an objdir on
|
||||
// the host machine. This is used in order to look up symbol information from
|
||||
// build artifacts of local builds.
|
||||
pref("devtools.performance.recording.objdirs", "[]");
|
||||
|
||||
// The default cache UI setting
|
||||
pref("devtools.cache.disabled", false);
|
||||
|
||||
// The default service workers UI setting
|
||||
pref("devtools.serviceWorkers.testing.enabled", false);
|
||||
|
||||
// Enable the Network Monitor
|
||||
pref("devtools.netmonitor.enabled", true);
|
||||
|
||||
// Enable Network Search
|
||||
pref("devtools.netmonitor.features.search", false);
|
||||
|
||||
// Enable the Application panel
|
||||
pref("devtools.application.enabled", false);
|
||||
|
||||
// The default Network Monitor UI settings
|
||||
pref("devtools.netmonitor.panes-network-details-width", 550);
|
||||
pref("devtools.netmonitor.panes-network-details-height", 450);
|
||||
pref("devtools.netmonitor.panes-search-width", 550);
|
||||
pref("devtools.netmonitor.panes-search-height", 450);
|
||||
pref("devtools.netmonitor.filters", "[\"all\"]");
|
||||
pref("devtools.netmonitor.visibleColumns",
|
||||
"[\"status\",\"method\",\"domain\",\"file\",\"cause\",\"type\",\"transferred\",\"contentSize\",\"waterfall\"]"
|
||||
);
|
||||
pref("devtools.netmonitor.columnsData",
|
||||
'[{"name":"status","minWidth":30,"width":5}, {"name":"method","minWidth":30,"width":5}, {"name":"domain","minWidth":30,"width":10}, {"name":"file","minWidth":30,"width":25}, {"name":"url","minWidth":30,"width":25}, {"name":"cause","minWidth":30,"width":10},{"name":"type","minWidth":30,"width":5},{"name":"transferred","minWidth":30,"width":10},{"name":"contentSize","minWidth":30,"width":5},{"name":"waterfall","minWidth":150,"width":25}]');
|
||||
pref("devtools.netmonitor.ws.payload-preview-height", 128);
|
||||
pref("devtools.netmonitor.ws.visibleColumns",
|
||||
'["data", "time"]'
|
||||
);
|
||||
|
||||
pref("devtools.netmonitor.ws.displayed-frames.limit", 500);
|
||||
pref("devtools.netmonitor.response.ui.limit", 10240);
|
||||
|
||||
// Save request/response bodies yes/no.
|
||||
pref("devtools.netmonitor.saveRequestAndResponseBodies", true);
|
||||
|
||||
// The default Network monitor HAR export setting
|
||||
pref("devtools.netmonitor.har.defaultLogDir", "");
|
||||
pref("devtools.netmonitor.har.defaultFileName", "%hostname_Archive [%date]");
|
||||
pref("devtools.netmonitor.har.jsonp", false);
|
||||
pref("devtools.netmonitor.har.jsonpCallback", "");
|
||||
pref("devtools.netmonitor.har.includeResponseBodies", true);
|
||||
pref("devtools.netmonitor.har.compress", false);
|
||||
pref("devtools.netmonitor.har.forceExport", false);
|
||||
pref("devtools.netmonitor.har.pageLoadedTimeout", 1500);
|
||||
pref("devtools.netmonitor.har.enableAutoExportToFile", false);
|
||||
|
||||
// Enable WebSocket monitoring in Nightly builds.
|
||||
#if defined(NIGHTLY_BUILD)
|
||||
pref("devtools.netmonitor.features.webSockets", true);
|
||||
#else
|
||||
pref("devtools.netmonitor.features.webSockets", false);
|
||||
#endif
|
||||
|
||||
// Scratchpad settings
|
||||
// - recentFileMax: The maximum number of recently-opened files
|
||||
// stored. Setting this preference to 0 will not
|
||||
// clear any recent files, but rather hide the
|
||||
// 'Open Recent'-menu.
|
||||
// - lineNumbers: Whether to show line numbers or not.
|
||||
// - wrapText: Whether to wrap text or not.
|
||||
// - showTrailingSpace: Whether to highlight trailing space or not.
|
||||
// - editorFontSize: Editor font size configuration.
|
||||
// - enableAutocompletion: Whether to enable JavaScript autocompletion.
|
||||
pref("devtools.scratchpad.recentFilesMax", 10);
|
||||
pref("devtools.scratchpad.lineNumbers", true);
|
||||
pref("devtools.scratchpad.wrapText", false);
|
||||
pref("devtools.scratchpad.showTrailingSpace", false);
|
||||
pref("devtools.scratchpad.editorFontSize", 12);
|
||||
pref("devtools.scratchpad.enableAutocompletion", true);
|
||||
|
||||
// Enable the Storage Inspector
|
||||
pref("devtools.storage.enabled", true);
|
||||
|
||||
// Enable the Style Editor.
|
||||
pref("devtools.styleeditor.enabled", true);
|
||||
pref("devtools.styleeditor.autocompletion-enabled", true);
|
||||
pref("devtools.styleeditor.showMediaSidebar", true);
|
||||
pref("devtools.styleeditor.mediaSidebarWidth", 238);
|
||||
pref("devtools.styleeditor.navSidebarWidth", 245);
|
||||
pref("devtools.styleeditor.transitions", true);
|
||||
|
||||
// Screenshot Option Settings.
|
||||
pref("devtools.screenshot.clipboard.enabled", false);
|
||||
pref("devtools.screenshot.audio.enabled", true);
|
||||
|
||||
// Enable Scratchpad
|
||||
pref("devtools.scratchpad.enabled", false);
|
||||
|
||||
// Make sure the DOM panel is hidden by default
|
||||
pref("devtools.dom.enabled", false);
|
||||
|
||||
// Enable the Accessibility panel.
|
||||
pref("devtools.accessibility.enabled", true);
|
||||
|
||||
// Web console filters
|
||||
pref("devtools.webconsole.filter.error", true);
|
||||
pref("devtools.webconsole.filter.warn", true);
|
||||
pref("devtools.webconsole.filter.info", true);
|
||||
pref("devtools.webconsole.filter.log", true);
|
||||
pref("devtools.webconsole.filter.debug", true);
|
||||
pref("devtools.webconsole.filter.css", false);
|
||||
pref("devtools.webconsole.filter.net", false);
|
||||
pref("devtools.webconsole.filter.netxhr", false);
|
||||
|
||||
// Webconsole autocomplete preference
|
||||
pref("devtools.webconsole.input.autocomplete",true);
|
||||
|
||||
// Browser console filters
|
||||
pref("devtools.browserconsole.filter.error", true);
|
||||
pref("devtools.browserconsole.filter.warn", true);
|
||||
pref("devtools.browserconsole.filter.info", true);
|
||||
pref("devtools.browserconsole.filter.log", true);
|
||||
pref("devtools.browserconsole.filter.debug", true);
|
||||
pref("devtools.browserconsole.filter.css", false);
|
||||
pref("devtools.browserconsole.filter.net", false);
|
||||
pref("devtools.browserconsole.filter.netxhr", false);
|
||||
|
||||
// Max number of inputs to store in web console history.
|
||||
pref("devtools.webconsole.inputHistoryCount", 300);
|
||||
|
||||
// Persistent logging: |true| if you want the relevant tool to keep all of the
|
||||
// logged messages after reloading the page, |false| if you want the output to
|
||||
// be cleared each time page navigation happens.
|
||||
pref("devtools.webconsole.persistlog", false);
|
||||
pref("devtools.netmonitor.persistlog", false);
|
||||
|
||||
// Web Console timestamp: |true| if you want the logs and instructions
|
||||
// in the Web Console to display a timestamp, or |false| to not display
|
||||
// any timestamps.
|
||||
pref("devtools.webconsole.timestampMessages", false);
|
||||
|
||||
// Enable the webconsole sidebar toggle in Nightly builds.
|
||||
#if defined(NIGHTLY_BUILD)
|
||||
pref("devtools.webconsole.sidebarToggle", true);
|
||||
#else
|
||||
pref("devtools.webconsole.sidebarToggle", false);
|
||||
#endif
|
||||
|
||||
// Enable editor mode in the console in Nightly builds.
|
||||
#if defined(NIGHTLY_BUILD)
|
||||
pref("devtools.webconsole.features.editor", true);
|
||||
#else
|
||||
pref("devtools.webconsole.features.editor", false);
|
||||
#endif
|
||||
|
||||
// Saved editor mode state in the console.
|
||||
pref("devtools.webconsole.input.editor", false);
|
||||
|
||||
// Editor width for webconsole and browserconsole
|
||||
pref("devtools.webconsole.input.editorWidth", 0);
|
||||
pref("devtools.browserconsole.input.editorWidth", 0);
|
||||
|
||||
// Disable the new performance recording panel by default
|
||||
pref("devtools.performance.new-panel-enabled", false);
|
||||
|
||||
// Enable message grouping in the console, true by default
|
||||
pref("devtools.webconsole.groupWarningMessages", true);
|
||||
|
||||
// Saved state of the Display content messages checkbox in the browser console.
|
||||
pref("devtools.browserconsole.contentMessages", false);
|
||||
|
||||
// Enable client-side mapping service for source maps
|
||||
pref("devtools.source-map.client-service.enabled", true);
|
||||
|
||||
// The number of lines that are displayed in the web console.
|
||||
pref("devtools.hud.loglimit", 10000);
|
||||
|
||||
// The developer tools editor configuration:
|
||||
// - tabsize: how many spaces to use when a Tab character is displayed.
|
||||
// - expandtab: expand Tab characters to spaces.
|
||||
// - keymap: which keymap to use (can be 'default', 'emacs' or 'vim')
|
||||
// - autoclosebrackets: whether to permit automatic bracket/quote closing.
|
||||
// - detectindentation: whether to detect the indentation from the file
|
||||
// - enableCodeFolding: Whether to enable code folding or not.
|
||||
pref("devtools.editor.tabsize", 2);
|
||||
pref("devtools.editor.expandtab", true);
|
||||
pref("devtools.editor.keymap", "default");
|
||||
pref("devtools.editor.autoclosebrackets", true);
|
||||
pref("devtools.editor.detectindentation", true);
|
||||
pref("devtools.editor.enableCodeFolding", true);
|
||||
pref("devtools.editor.autocomplete", true);
|
||||
|
||||
// The angle of the viewport.
|
||||
pref("devtools.responsive.viewport.angle", 0);
|
||||
// The width of the viewport.
|
||||
pref("devtools.responsive.viewport.width", 320);
|
||||
// The height of the viewport.
|
||||
pref("devtools.responsive.viewport.height", 480);
|
||||
// The pixel ratio of the viewport.
|
||||
pref("devtools.responsive.viewport.pixelRatio", 0);
|
||||
// Whether or not the viewports are left aligned.
|
||||
pref("devtools.responsive.leftAlignViewport.enabled", false);
|
||||
// Whether to reload when touch simulation is toggled
|
||||
pref("devtools.responsive.reloadConditions.touchSimulation", false);
|
||||
// Whether to reload when user agent is changed
|
||||
pref("devtools.responsive.reloadConditions.userAgent", false);
|
||||
// Whether to show the notification about reloading to apply emulation
|
||||
pref("devtools.responsive.reloadNotification.enabled", true);
|
||||
// Whether or not touch simulation is enabled.
|
||||
pref("devtools.responsive.touchSimulation.enabled", false);
|
||||
// Whether or not meta viewport is enabled, if and only if touchSimulation
|
||||
// is also enabled.
|
||||
pref("devtools.responsive.metaViewport.enabled", false);
|
||||
// The user agent of the viewport.
|
||||
pref("devtools.responsive.userAgent", "");
|
||||
|
||||
// Whether to show the settings onboarding tooltip only in release or beta
|
||||
// builds.
|
||||
#if defined(RELEASE_OR_BETA)
|
||||
pref("devtools.responsive.show-setting-tooltip", true);
|
||||
#else
|
||||
pref("devtools.responsive.show-setting-tooltip", false);
|
||||
#endif
|
||||
// Show the custom user agent input in Nightly builds.
|
||||
#if defined(NIGHTLY_BUILD)
|
||||
pref("devtools.responsive.showUserAgentInput", true);
|
||||
#else
|
||||
pref("devtools.responsive.showUserAgentInput", false);
|
||||
#endif
|
||||
|
||||
// Show tab debug targets for This Firefox (on by default for local builds).
|
||||
#ifdef MOZILLA_OFFICIAL
|
||||
pref("devtools.aboutdebugging.local-tab-debugging", false);
|
||||
#else
|
||||
pref("devtools.aboutdebugging.local-tab-debugging", true);
|
||||
#endif
|
||||
|
||||
// Show process debug targets.
|
||||
pref("devtools.aboutdebugging.process-debugging", true);
|
||||
// Stringified array of network locations that users can connect to.
|
||||
pref("devtools.aboutdebugging.network-locations", "[]");
|
||||
// Debug target pane collapse/expand settings.
|
||||
pref("devtools.aboutdebugging.collapsibilities.installedExtension", false);
|
||||
pref("devtools.aboutdebugging.collapsibilities.otherWorker", false);
|
||||
pref("devtools.aboutdebugging.collapsibilities.serviceWorker", false);
|
||||
pref("devtools.aboutdebugging.collapsibilities.sharedWorker", false);
|
||||
pref("devtools.aboutdebugging.collapsibilities.tab", false);
|
||||
pref("devtools.aboutdebugging.collapsibilities.temporaryExtension", false);
|
||||
|
||||
// about:debugging: only show system and hidden extensions in local builds by
|
||||
// default.
|
||||
#ifdef MOZILLA_OFFICIAL
|
||||
pref("devtools.aboutdebugging.showHiddenAddons", false);
|
||||
#else
|
||||
pref("devtools.aboutdebugging.showHiddenAddons", true);
|
||||
#endif
|
||||
|
||||
// Map top-level await expressions in the console
|
||||
pref("devtools.debugger.features.map-await-expression", true);
|
||||
|
||||
// Disable autohide for DevTools popups and tooltips.
|
||||
// This is currently not exposed by any UI to avoid making
|
||||
// about:devtools-toolbox tabs unusable by mistake.
|
||||
pref("devtools.popup.disable_autohide", false);
|
||||
|
||||
// Load the DevTools toolbox in a frame with type=content instead of type=chrome
|
||||
// See Bug 1539979 for more details.
|
||||
// We keep the option of running devtools in a chrome frame while we fix racy
|
||||
// tests that started failing when using type=content, but this ultimately
|
||||
// should be removed.
|
||||
pref("devtools.toolbox.content-frame", true);
|
||||
|
||||
pref("devtools.webide.templatesURL", "https://code.cdn.mozilla.net/templates/list.json");
|
||||
pref("devtools.webide.autoinstallADBExtension", true);
|
||||
pref("devtools.webide.autoConnectRuntime", true);
|
||||
pref("devtools.webide.restoreLastProject", true);
|
||||
pref("devtools.webide.enableLocalRuntime", false);
|
||||
pref("devtools.webide.lastConnectedRuntime", "");
|
||||
pref("devtools.webide.lastSelectedProject", "");
|
||||
pref("devtools.webide.zoom", "1");
|
||||
pref("devtools.webide.busyTimeout", 10000);
|
||||
|
|
|
@ -230,17 +230,14 @@
|
|||
; [Webide Files]
|
||||
@RESPATH@/chrome/webide@JAREXT@
|
||||
@RESPATH@/chrome/webide.manifest
|
||||
@RESPATH@/@PREF_DIR@/webide.js
|
||||
|
||||
; [DevTools Startup Files]
|
||||
@RESPATH@/chrome/devtools-startup@JAREXT@
|
||||
@RESPATH@/chrome/devtools-startup.manifest
|
||||
@RESPATH@/@PREF_DIR@/devtools-startup.js
|
||||
|
||||
; DevTools
|
||||
@RESPATH@/chrome/devtools@JAREXT@
|
||||
@RESPATH@/chrome/devtools.manifest
|
||||
@RESPATH@/@PREF_DIR@/devtools-client.js
|
||||
@RESPATH@/@PREF_DIR@/debugger.js
|
||||
|
||||
; classic theme
|
||||
|
|
Загрузка…
Ссылка в новой задаче