Name Description Size
highlighters-overlay.js While refactoring to an abstracted way to show and hide highlighters, we did not update all tests and code paths which listen for exact events. When we show or hide highlighters we reference this mapping to emit events that consumers may be listening to. This list should go away as we incrementally rewrite tests to use abstract event names with data payloads indicating the highlighter. DO NOT OPTIMIZE THIS MAPPING AS CONCATENATED SUBSTRINGS! It makes it difficult to do project-wide searches for exact matches. 65728
moz.build 568
node-reps.js Creates either an ElementNode or a TextNode rep given a nodeFront. By default the rep is created in TINY mode. @param {NodeFront} nodeFront The node front to create the element for. @param {Object} props Props to pass to the rep. 1341
node-types.js Types of nodes used in the rule and computed view. 914
style-change-tracker.js The InspectorStyleChangeTracker simply emits an event when it detects any changes in the page that may cause the current inspector selection to have different style applied to it. It currently tracks: - markup mutations, because they may cause different CSS rules to apply to the current node. - window resize, because they may cause media query changes and therefore also different CSS rules to apply to the current node. 3177
style-inspector-menu.js Style inspector context menu @param {RuleView|ComputedView} view RuleView or ComputedView instance controlling this menu @param {Object} options Option menu configuration 13805
test
tooltips-overlay.js The tooltip overlays are tooltips that appear when hovering over property values and editor tooltips that appear when clicking swatch based editors. 16664
utils.js Called when a character is typed in a value editor. This decides whether to advance or not, first by checking to see if ";" was typed, and then by lexing the input and seeing whether the ";" would be a terminator at this point. @param {number} keyCode Key code to be checked. @param {string} aValue Current text editor value. @param {number} insertionPoint The index of the insertion point. @return {Boolean} True if the focus should advance; false if the character should be inserted. 6816
walker-event-listener.js WalkerEventListener provides a mechanism to listen the walker event of the inspector while reflecting the updating of TargetCommand. 2620