DOM Panel
Inside the DOM Panel you get information about all the different DOM properties and methods. For objects and arrays it offers a expandable tree view. Clicking on them limits the display of the DOM tree to these objects resp. arrays and shows the current element path as breadcrumb list inside the Panel Toolbar. Clicking on a function jumps to it inside the Script Panel. Note, that the panel shows a snapshot of the current state. Changes to properties don't take effect on the display of the DOM panel until you are refreshing it.
Contents
Options Menu[edit]
This menu is reachable via the little arrow in the panel tab (
) or by right-clicking on on the panel tab (since Firebug 1.9).
| Option | Preference | Description |
|---|---|---|
| Show User-defined Properties | extensions.firebug.showUserProps |
Toggles the display of user-defined object properties |
| Show User-defined Functions | extensions.firebug.showUserFuncs |
Toggles the display of user-defined object methods |
| Show DOM Properties | extensions.firebug.showDOMProps |
Toggles the display of properties specified inside the DOM |
| Show DOM Functions | extensions.firebug.showDOMFuncs |
Toggles the display of functions specified inside the DOM |
| Show DOM Constants | extensions.firebug.showDOMConstants |
Toggles the display of constants specified inside the DOM |
| Show Inline Event Handlers | extensions.firebug.showInlineEventHandlers |
Toggles the display of inline event handlers |
| Show Closures | extensions.firebug.showClosures |
Toggles the display of closures; See the Closure Inspector for more info on this |
| Show Own Properties Only | extensions.firebug.showOwnProperties |
Specifies whether only an object's own properties shall be shown |
| Show Enumerable Properties Only | extensions.firebug.showEnumerableProperties |
Specifies whether only enumerable properties shall be shown |
| Refresh | - | Updates the display |
For more info about tweaks available in Firebug please see the full list of preferences.
Panel Toolbar[edit]
Property Path[edit]
The path from the currently selected property up to window is shown as breadcrumb list inside the Panel Toolbar. Clicking on one of the items displays the contents of the appropriate property of the DOM tree. Right-clicking on the Panel Toolbar offers an option for refreshing the displayed data.
Panel[edit]
Values[edit]
The display of the different item values is optimized for readability. See the Display of JavaScript values and DOM items.
Color codes[edit]
Different color codes let you distinguish between the different types of variables and improve readability. Here they are in detail:
| Format | Description |
|---|---|
| Bold Black | Objects |
| Black | DOM objects |
| get in gray | "Getter" functions |
| Bold green | User functions |
| Green | DOM functions |
| Bold Red | Constructor functions |
Note that the values of read-only properties are displayed with a pale text color.
Property descriptor info[edit]
At the left side of the property value there is a column, which provides info about the different property descriptors within a tooltip.
A lock icon (
) indicates that a property is neither writable nor has a setter function assigned.
Auto-completion[edit]
Like in the Console, CSS and HTML Panel variables are auto-completed while typing. This enhances productivity and supports you making changes.
localStorage[edit]
Note that localStorage is just an object so you can create, view, and edit it in the DOM view.
Breakpoint Column[edit]
You can add a breakpoint for a property by clicking the Breakpoint Column at the left side of it. By doing this the script execution will be halted as soon as the property is changed. Clicking on a set breakpoint removes it.
Context Menu[edit]
| Option | Context | Shortcut | Description |
|---|---|---|---|
| Copy Name | Property List | - | Copies the name of the selected property to the clipboard |
| Copy Path | Property List | - | Copies the property path up to the selected property to the clipboard |
| Edit Property... | Property List | - | Lets you edit the value of the property |
| Delete Property | Property List (user-defined properties and functions) | - | Deletes the property |
| Break On Property Change | Property List (user-defined properties and functions) | - | Script execution will be stopped, if the selected property is changed |
| Refresh | Property List, Property Path | - | Refreshes the display of the Property List |
Depending on the property value there are different options offered related to it. E.g. if the value is an HTML node, you'll be offered special options related to it, which are described inside the HTML Panel.
For functions the additional context menu options are:
| Option | Shortcut | Description |
|---|---|---|
| Log Calls to "<function name>" | - | Logs calls to the given function; see monitor for more info |
| Copy Function | - | Copies the whole function to the clipboard |
