Mozilla Developer Edition

Posted on  by 



You can examine and edit the page's HTML in the HTML pane.

Mozilla Developer Edition

Navigating the HTML

HTML breadcrumbs

Get help with Firefox Developer Tools. Here are just a few of the topics you'll find on MDN: Open Web technologies: HTML CSS JavaScript Document Object Model (DOM) Web APIs Graphics (SVG, WebGL, WebVR, WebXR) Media (audio, video, streaming, WebRTC) The Mozilla platform: Firefox test channels (Nightly, Developer Edition and Beta). Firefox Developer Edition now replaces the Aurora channel to offer an updated version of the browser every six weeks, long before its official release on the standard channel, and is rounded off with unique features aimed at web development. 2 days ago  PortableApps.com is proud to announce the release of Mozilla Firefox® Developer Edition, Portable 89b1. It's the developer's edition of the Mozilla Firefox web browser bundled with a PortableApps.com Launcher as a portable app, so you can do web development on the go. Both the 32-bit and 64-bit versions are included. And it's open source and completely free.

At the bottom on the HTML pane is a breadcrumbs toolbar. This shows the complete hierarchy through the document for the branch containing the selected element:

Hovering over a breadcrumb highlights that element in the page.

The breadcrumbs bar has its own keyboard shortcuts.

Searching

The Page Inspector's search box matches all markup in the current document and in any frames.

To start searching the markup, click in the search box to expand it or press Ctrl + F , or Cmd + F on a Mac. There are three types of searches that are performed automatically depending on what you enter, a full text search, a CSS selector search, and an XPath search.

Mozilla Developer Edition

Full text search

The full text search will always be executed, independently of what you enter. That allows you to find CSS selectors and XPath expressions occurring within the text.

CSS selector search

You can search elements by entering a CSS selector.

As you type, an autocomplete popup shows any class or ID attributes that match the current search term:

Press Up and Down to cycle through suggestions, Tab to choose the current suggestion, then Enter to select the first node with that attribute.

To cycle through matches, press Enter. You can cycle backwards through matches using Shift + Enter.

XPath search

It is also possible to search via XPaths. This allows you to search for specific elements without the conflict of matching words within the text. For example, //a matches all <a> elements but not the letter 'a' within the text content. Furthermore it allows for some more advanced searches like finding elements that start with a specific text, for example.

HTML tree

The rest of the pane shows you the page's HTML as a tree (this UI is also called the Markup View). Just to the left of each node is an arrow: click the arrow to expand the node. If you hold the Alt key while clicking the arrow, it expands the node and all the nodes underneath it.

Moving the mouse over a node in the tree highlights that element in the page.

Nodes that are not visible are shown faded/desaturated. This can happen for different reasons such as using display: none or that the element doesn't have any dimensions.

There is an ellipsis shown between the opening and closing tag of an element when the node is collapsed if it has larger contents. Now children are indicated in the tree with this icon:

Markers ('badges') are displayed to the right of some nodes. The table below explains the meaning of each badge:

eventThe element has one or several event listeners attached to it. Clicking the marker opens a tooltip listing the event listeners and allows you for each listener to switch to the line of JavaScript code in the Debugger where the listener is defined.
scrollThe element is a scroll container, i.e. it has either overflow: scroll applied, or overflow: auto and sufficient content to cause scrollable overflow.
If preference devtools.overflow.debugging.enabled is true, toggling the scroll badge will highlight any elements causing the overflow, and these nodes will additionally display the overflow badge.
overflowThe element is causing scrollable overflow in a scroll container (either the current node or a parent node—the affected node will display the scroll badge).

Note: The overflow badge is introduced in Firefox 83. In earlier versions it can be enabled using the preference devtools.overflow.debugging.enabled is true.

gridThe element is a grid container, i.e. it has display: grid applied to it. Clicking the marker enables the grid highlighter.
flexThe element is a flex container, i.e. it has display: flex applied to it. Clicking the marker enables the flexbox highlighter.
inline-gridThe element is an inline grid container, i.e. it has display: inline-grid or display: inline grid applied to it. Clicking the marker enables the grid highlighter.
inline-flexThe element is an inline flex container, i.e. it has display: inline-flex or display: inline flex applied to it. Clicking the marker enables the flexbox highlighter.
custom…The element is a custom element. Clicking the marker switches to the line of JavaScript code in the Debugger where the custom element got defined.

Note: There are some useful keyboard shortcuts that can be used in the HTML tree — see the HTML pane keyboard shortcuts list.

::before and ::after

You can inspect pseudo-elements added using ::before and ::after:

Custom element definition

When you open the Inspector on a page that includes custom elements, you can view the class definition for the custom element in the Debugger:

Mozilla Developer Edition 64 Bit Download

  1. Inspect the element
  2. Click on the word custom

The source for the element's class will be displayed in the Debugger.

Whitespace-only text nodes

Web developers don’t write all their code in just one line of text. They use white space such as spaces, returns, or tabs between their HTML elements because it makes markup more readable.

Usually this white space seems to have no effect and no visual output, but in fact, when a browser parses HTML it will automatically generate anonymous text nodes for elements not contained in a node. This includes white space (which is after all a type of text).

If these auto generated text nodes are inline level, browsers will give them a non-zero width and height. Then you will find strange gaps between elements, even if you haven’t set any margin or padding on them.

Since Firefox 52, the Inspector displays these whitespace nodes, so you can see where the gaps in your markup come from. Whitespace nodes are represented with a dot: and you get an explanatory tooltip when you hover over them:

To see this in action, see the demo at https://mdn.github.io/devtools-examples/whitespace-only-demo/index.html.

Shadow roots

Any shadow roots present in the DOM are exposed in the HTML page in the same manner as the regular DOM. The shadow root is signified by a node named #shadow-root — you can click its expansion arrow to see the full contents of the shadow DOM, and then manipulate the contained nodes in a similar way to other part of the page's DOM (although with a limited featureset — you can't, for example, drag and drop or delete shadow DOM nodes).

If a shadow DOM contains a 'slotted' element (an element with a slot attribute after it has been inserted inside a <slot> element — see Adding flexibility with slots for an explanation of how these are used), the 'slotted' element will be shown inside its corresponding <slot> element, with a 'reveal' link alongside it. Clicking the 'reveal' link will highlight the element with the slot attribute as it exists outside the shadow DOM

This is very useful when you've got a <slot> element and you can't find the source of its content.

Note: Shadow DOM inspection was implemented in Firefox 61, but was hidden behind the dom.webcomponents.shadowdom.enabled pref until Firefox 63. It is now turned on by default.

Element popup context menu

You can perform certain common tasks on a specific node using a popup context menu. To activate this menu, context-click the element. The menu contains the following items — click on the links to find the description of each command in the Context menu reference:

  • Attributes
    • Copy Attribute Value
  • Break on ...
    • Subtree Modification
    • Attribute Modification
    • Node Removal
  • Show Accessibility Properties
  • Change Pseudo-class
  • Copy
    • XPath
  • Paste
  • Open Link in New Tab *
  • Open File in Debugger *
  • Open File in Style-Editor *
  • Copy Link Address *

* These options only appear in certain contexts, for example the 'Open File in Style-Editor' option only appears when you context-click over the top of a link to a CSS file.

Context menu reference

Edit as HTMLEdit the element's HTML.
(Copy) Inner HTMLCopy the inner HTML for the element.
(Copy) Outer HTML

Copy the outer HTML for the element.

Pressing Ctrl + C (or Cmd + C on a Mac) also performs this action.

(Copy) Unique Selector/CSS SelectorCopy a CSS selector that uniquely selects the element.
(Copy) CSS PathCopy a CSS selector that represents the full path to the element.
(Copy) Image to inspect the currently selected element.
Use in ConsoleAssigns the currently selected node to a variable named temp0 (or temp1 if temp0 is already taken, and so on), then opens the split console, enabling you to interact with that node using the console's command line.
Expand AllIn the tree view, expand the current element and all the elements underneath it. This is equivalent to holding the Alt key and clicking the disclosure triangle next to an element.
CollapseIn the tree view, collapse the current element. This is equivalent to clicking the disclosure arrow next to an element that's expanded.
(Paste) Inner HTMLPaste the clipboard contents into the node as its innerHTML.
(Paste) Outer HTMLPaste the clipboard contents into the node as its outerHTML.
(Paste) BeforePaste the clipboard contents into the document immediately before this node.
(Paste) AfterPaste the clipboard contents into the document immediately after this node.
(Paste) As First ChildPaste the clipboard contents into the document as the first child of this node.
(Paste) As Last ChildPaste the clipboard contents into the document as the last child of this node.
Scroll Into View

Scrolls the web page so the selected node is visible.

From Firefox 44, pressing the keyboard shortcut S will also scroll the selected node into view.

Screenshot NodeTakes a screenshot of the selected node, saved to your Downloads directory. See Taking screenshots.
Create New NodeCreate a new empty <div> as the last child of the currently selected element. See Inserting new nodes.
Duplicate NodeCreate a copy of this element, and insert the copy immediately after this element.
Delete NodeDelete the element from the DOM.
Attribute/Add AttributeAdd an attribute to the element.
Attribute/Edit Attribute(only when invoked on an attribute) Edit the attribute.
Attribute/Remove Attribute(only when invoked on an attribute) Remove the attribute.
Open Link in New Tab(only when invoked over a link, such as an href attribute) Opens the linked item in a new tab.
Open File in Debugger(only when invoked over a link to a JS source) Opens the linked source in the Debugger.
Open File in Style-Editor(only when invoked over a link to a CSS source) Opens the linked source in the Style Editor.
Copy Link Address(only when invoked over a URL) Copy the URL.
(Change Pseudo-class) hoverSet the :hover CSS pseudo-class.
(Change Pseudo-class) activeSet the :active CSS pseudo-class.
(Change Pseudo-class) focusSet the :focus CSS pseudo-class.
(Change Pseudo-class) focus-visibleSet the :focus-visible CSS pseudo-class.
(Change Pseudo-class) focus-withinSet the :focus-within CSS pseudo-class.
(Change Pseudo-class) visitedSet the :visited CSS pseudo-class.

Editing HTML

You can edit the HTML — tags, attributes, and content — directly in the HTML pane: double-click the text you want to edit, change it, and press Enter to see the changes reflected immediately.

To edit an element's outerHTML, activate the element's popup menu and select 'Edit As HTML'. You'll see a text box in the HTML pane:

You can add any HTML in here: changing the element's tag, changing existing elements, or adding new ones. Once you click outside the box, the changes are applied to the page.

When you're editing HTML, the context menu you'll see is the normal one for working with editable text:

Copy and paste

You can use the popup menu to copy nodes in the HTML tree and paste them into the desired location.

Drag and drop

You can reorganize the HTML content of a page by moving nodes in the HTML tree. Just click and hold on any element and drag it up or down in the tree. When you release the mouse button, the element will be inserted at the corresponding position:

You can cancel the drag and drop by pressing the Esc key.

Inserting new nodes

Firefox Developers Edition

There's a '+' icon at the top of the markup view:

Click this icon to insert an empty <div> into the document as the last child of the currently selected element. You can then edit the new node's content and styling just as you would any other node in the document.

You can access the same functionality using the 'Create New Node' popup menu item.

Note that this button is disabled if the selected element's type is such that adding a last-child would have no effect (for example, if it is an <html> or <iframe> element). However, it is enabled in places where it is not valid to insert a <div>, such as <style> or <link>. In these cases the element is added as text.

The font-weight attribute refers to the boldness or lightness of the glyphs used to render the text, relative to other fonts in the same font family.

Mozilla

Note: As a presentation attribute, font-weight can be used as a CSS property. See the css font-weight property for more information.

As a presentation attribute, it can be applied to any element but it has effect only on the following eight elements: <altGlyph>, <text>, <textPath>, <tref>, and <tspan>

Usage notes

Mozilla Developer Edition 64 Bit

Valuenormal | bold | bolder | lighter | <number>
Default valuenormal
AnimatableYes

For a description of the values, please refer to the CSS font-weight property.

Download Mozilla Developer Edition

Specifications

SpecificationStatusComment
CSS Fonts Module Level 4
The definition of 'font-weight' in that specification.
Working DraftDefines font-weight to accept any numbers between 1 and 1000.
CSS Fonts Module Level 3
The definition of 'font-weight' in that specification.
RecommendationNo change
Scalable Vector Graphics (SVG) 1.1 (Second Edition)
The definition of 'font-weight' in that specification.
RecommendationInitial definition

Browser compatibility

Edition

BCD tables only load in the browser

Mozilla Developer Edition Download

See also





Coments are closed