DOM Panel
From FirebugWiki
Sebastianz (Talk | contribs) (Added info about the current state nature of the DOM panel) |
Sebastianz (Talk | contribs) m (Changed image for options menu arrow) |
||
| (5 intermediate revisions not shown) | |||
| Line 3: | Line 3: | ||
== Options Menu == | == Options Menu == | ||
| + | This menu is reachable via the little arrow in the panel tab ( [[File:DOMPanelOptionsMenuArrow.png]] ) or by right-clicking on on the panel tab (since [[Firebug Release Notes#Firebug 1.9|Firebug 1.9]]). | ||
| + | |||
{| class="wikitable" style="width:100%; vertical-align:top;" | {| class="wikitable" style="width:100%; vertical-align:top;" | ||
|- bgcolor=lightgrey | |- bgcolor=lightgrey | ||
| Line 16: | Line 18: | ||
|- | |- | ||
| Show DOM Constants || <code>extensions.firebug.showDOMConstants</code> || Toggles the display of constants specified inside the DOM | | Show DOM Constants || <code>extensions.firebug.showDOMConstants</code> || Toggles the display of constants specified inside the DOM | ||
| + | |- | ||
| + | | Show Inline Event Handlers || <code>extensions.firebug.showInlineEventHandlers</code> || Toggles the display of inline event handlers | ||
| + | |- | ||
| + | | Show Own Properties Only || <code>extensions.firebug.showOwnProperties</code> || Specifies whether only an object's [https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/getOwnPropertyNames own properties] shall be shown | ||
| + | |- | ||
| + | | Show Enumerable Properties Only || <code>extensions.firebug.showEnumerableProperties</code> || Specifies whether only [https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/keys enumerable properties] shall be shown | ||
|- | |- | ||
| Refresh || - || Updates the display | | Refresh || - || Updates the display | ||
| Line 23: | Line 31: | ||
== Panel Toolbar == | == Panel Toolbar == | ||
| - | === | + | === Property Path === |
| - | The path from the currently selected | + | 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. |
| + | |||
| + | == Context Menu == | ||
| + | {| class="wikitable" style="width:100%; vertical-align:top;" | ||
| + | |- bgcolor=lightgrey | ||
| + | ! style="width:180px;" | 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: | ||
| + | {| class="wikitable" style="width:100%; vertical-align:top;" | ||
| + | |- bgcolor=lightgrey | ||
| + | ! style="width:180px;" | 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 | ||
| + | |} | ||
== Color Codes == | == Color Codes == | ||
Revision as of 00:14, 24 December 2012
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
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 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
Property Path
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.
Context Menu
| 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 |
Color Codes
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 |
Auto-Completion
Like in the Console, CSS and HTML Panel variables are auto-completed while typing. This enhances productivity and supports you making changes.
localStorage
Note that localStorage is just an object so you can create, view, and edit it in the DOM view.