Cookie Consent by Free Privacy Policy Generator ๐Ÿ“Œ Top layer support in Chrome DevTools

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š Top layer support in Chrome DevTools


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: developer.chrome.com

Chrome DevTools is adding support for top layer elements, making it easier for developers to debug their code that makes use of top layer elements.

Note: This is a preview feature available in Chrome Canary from version 105.

This article describes what top layer elements are, how DevTools help to visualize the top layer content to understand and debug DOM structure that contains top layer elements, and how DevTools top layer support is implemented.

What are the top layer and top layer elements?

What exactly happens internally when you open a <dialog> as a modal? ๐Ÿค”

It is put into a top layer. Top layer content renders on top of all other content. For example, a modal dialog needs to appear on top of all other DOM content, so the browser automatically renders this element in a 'top layer' instead of forcing authors to manually battle z-index. A top layer element appears on top of an element even with the highest z-index.

The top layer can be described as 'the highest stacking layer'. Each document has a single associated viewport and, therefore, also a single top layer. Multiple elements can be inside the top layer at the same time. When that happens, they stack on top of each other, the last one on top. In other words, all of the top layer elements are placed in a last in, first out (LIFO) stack in the top layer.

The <dialog> element is not the only element that the browser renders into a top layer. Currently, the top layer elements are: popups modal dialogs elements in a fullscreen mode.

Examine the following dialog implementation:

<main>
<button onclick="window.dialog.showModal();">Open Dialog</button>
</main>
<dialog id="dialog"></dialog>

Here is a demo with a couple of dialogs that have styles applied to their backdrops (backdrops described below):

What is a backdrop?

Luckily, there is a way to customize the content beneath the top layer element.

Every element in the top layer has a CSS pseudo-element called a backdrop.

The Backdrop is a box the size of the viewport which is rendered immediately beneath any top layer element. The ::backdrop pseudo-element makes it possible to obscure, style, or completely hide everything located below the element when it's the topmost one in the top layer.

When you make multiple elements modal, the browser draws the backdrop immediately beneath the frontmost such element and on top of other fullscreen elements.

Here is how you style a backdrop:

/* The browser displays the backdrop only when the dialog.showModal() function opens the dialog.*/
dialog::backdrop {
background: rgba(255,0,0,.25);
}

How to show only the first backdrop?

Every top layer element has a backdrop that belongs to a top layer stack. These backdrops are designed to overlap each other, so if the opacity of a backdrop is not 100%, the backdrops underneath are visible.

If only the first backdrop in the top layer stack needs to be visible, you can achieve this by keeping track of the item identifiers in the top layer stack.

If the added element is not the first one in the top layer, the function called when the element is put into the top layer applies a hiddenBackdrop class to the ::backdrop. This class is removed when the element is removed from the top layer.

Check out the code in this example demo:

Top layer support design in DevTools

DevTools support for the top layer helps developers understand the concept of the top layer and visualize how the top layer content changes. These features help developers identify the following:

  • The elements in the top layer at any time and their order.
  • The element at the top of the stack at any point.

Moreover, DevTools top layer support helps to visualize the position of the backdrop pseudo-element in the top layer stack. Even though it is not a tree element, it plays an important role in how the top layer works and can be useful to developers.

With the top layer support features, you can:

  1. Observe which elements are in the top layer stack at any time. The top layer representation stack changes dynamically as elements are added or removed from the top layer.
  2. See the element position in the top layer stack.
  3. Jump from the top layer element or elements' backdrop pseudo-element in the tree to the element or backdrop pseudo-element in the top layer representation container and back.

Let's see how to use these features!

Top layer container

To help visualize the top layer elements, DevTools adds a top layer container to the elements tree. It resides after the closing </html> tag.

This container allows you to observe the elements in the top layer stack at any time. The top layer container is a list of links to the top layer elements and their backdrops. The top layer representation stack changes dynamically as elements are added or removed from the top layer.

To find top layer elements within the elements tree or the top layer container, click the links from the top layer element representation in the top layer container to the same element in the element tree and back.

To jump from the top layer container element to the top layer tree element, click the reveal button next to the element in the top layer container.

Jumping from the top layer container link to the element.

To jump from the top layer tree element to the link in the top layer container, click the top layer badge next to the element.

Jumping from an element to the top layer container link.

You can turn off any badge, including the top-layer one. To disable the badges, right-click on any badge, choose Badge settings and clear the ticks next to badges you want to hide.

Turning the badge off.

Note: The top layer container appears only when the top layer stack contains rendered content.

Elements order in the top layer stack

The top layer container shows the elements as they appear in the stack but in reverse order. The top of the stack element is the last in the element list of the top layer container. This means that the last element in the top layer container list is the element you can currently interact with in the document.

The badges next to the tree elements indicate whether the elements belong to the top layer and contain the position number of an element in the stack.

In this screenshot, the top layer stack consists of two elements, with the second element at the top of the stack. If you remove the second element, the first one moves to the top.

The order of elements in the stack.

Backdrops in the top layer container

As mentioned above, every top layer element has a CSS pseudo-element called backdrop. You can style this element, so it is useful to also inspect it and see its representation.

In the elements tree, a backdrop element resides before the closing tag of the element it belongs to. However, in the top layer container, a backdrop link is listed right above the top layer element it belongs to.

Backdrops stack position.

Changes to the DOM tree

ElementsTreeElement, the class responsible for creating and managing individual DOM tree elements in DevTools, was not sufficient to implement a top layer container.

To display the top layer container as a node in the tree, we added a new class that creates DevTools tree element nodes. Previously, the class responsible for creating DevTools elements tree initialized every TreeElement with a DOMNode, which is a class with a backendNodeId and other backend-related properties. backendNodeId, in turn, is assigned on the backend.

The top layer container node, that has a list of links to top layer elements, needed to behave as a regular tree element node. However, this node is not a 'real' DOM node and the backend doesn't need to create the top layer container node.

To create a frontend node that represents the top layer, we added a new type of frontend node that is created without a DOMNode. This top layer container element is the first frontend node that does not have a DOMNode, meaning it exists only on the frontend and the backend does not 'know' about it. To have the same behavior as other nodes, we created a new TopLayerContainer class that extends the UI.TreeOutline.TreeElement class which is responsible for the behavior of frontend nodes.

To achieve the desired placement, the class that renders an element attaches TopLayerContainer as the next sibling of the <html> tag.

A new top layer badge indicates that the element is in the top layer and serves as a link to the shortcut of this element in the TopLayerContainer element.

Initial design

At first, the plan was to duplicate top layer elements into the top layer container instead of creating a list of links to the elements. We didn't implement this solution because of the way the fetching of element's children works in DevTools. Each element has a parent pointer used in fetching children and it is impossible to have multiple pointers. Therefore, we can't have a node that properly expands and contains all children in multiple places in the tree. In general, the system was not built with duplicate subtrees in mind.

The compromise we arrived at was creating links to the frontend DOM nodes instead of duplicating those nodes. The class responsible for creating links to elements in DevTools is ShortcutTreeElement, which extends the UI.TreeOutline.TreeElement. ShortcutTreeElement has the same behavior as other DevTools DOM tree elements but doesn't have a corresponding node on the backend and has a button that links to an ElementsTreeElement. Each ShortcutTreeElement to the top layer node has a child ShortcutTreeElement that links to the representation of a ::backdrop pseudo-element in the DevTools DOM tree.

Initial design:

Initial design.

Chrome DevTools Protocol (CDP) changes

To implement the top layer support, changes to Chrome DevTools Protocol (CDP) are required. CDP serves as a communication protocol between DevTools and Chromium.

We need to add the following:

  • A command to call from the frontend at any time.
  • An event to trigger on the frontend from the backend side.

CDP: DOM.getTopLayerElements command

To display the current top layer elements, we need a new experimental CDP command that returns a list of node IDs of the elements that are in the top layer. DevTools calls this command whenever the DevTools are opened or when the top layer elements change. The command looks like the following:

  # Returns NodeIds of the current top layer elements.
# Top layer renders closest to the user within a viewport, therefore, its elements always
# appear on top of all other content.
experimental command getTopLayerElements
returns
# NodeIds of the top layer elements.
array of NodeId nodeIds

CDP: DOM.topLayerElementsUpdated event

To get the up-to-date list of the top layer elements, we need every change of the top layer elements to trigger an experimental CDP event. This event informs the frontend of the change that then calls the DOM.getTopLayerElements command and receives the new elements list.

The event looks like the following:

  # Called by the change of the top layer elements.
experimental event topLayerElementsUpdated

CDP considerations

There were multiple options on how the CDP support of the top layer could be implemented. Another option we considered was making an event that would return the list of the top layer elements instead of just informing the front end about an addition or removal of a top layer element.

Alternatively, we could make two events instead of the command: topLayerElementAdded and topLayerElementRemoved. In this case, we would be receiving an element and would need to manage the array of the top layer elements on the front end.

Currently, a frontend event calls the getTopLayerElements command to get a list of updated elements. If we were to send a list of elements or a specific element that caused the change every time an event is triggered, we could avoid one step of calling the command. However, in this case, the frontend would lose the control over which elements are pushed.

We implemented it in this way because, in our opinion, it's better if the frontend decides when to request top layer nodes. For example, if the top layer is collapsed in the UI or the user is using a DevTools panel that doesn't have the elements tree, there's no need to get the extra nodes that could be deeper into the tree.

...



๐Ÿ“Œ Top layer support in Chrome DevTools


๐Ÿ“ˆ 40.61 Punkte

๐Ÿ“Œ Different ways to open Chrome DevTools | DevTools Tips


๐Ÿ“ˆ 33.64 Punkte

๐Ÿ“Œ DevTools Tips: How to emulate CSS user preference media features with DevTools


๐Ÿ“ˆ 29.3 Punkte

๐Ÿ“Œ DevTools Tips: Faster DevTools navigation


๐Ÿ“ˆ 29.3 Punkte

๐Ÿ“Œ Debugging PWA with DevTools | DevTools Tips


๐Ÿ“ˆ 29.3 Punkte

๐Ÿ“Œ Discover CSS issues with DevTools | DevTools Tips


๐Ÿ“ˆ 29.3 Punkte

๐Ÿ“Œ DevTools Tips: Different ways to open DevTools


๐Ÿ“ˆ 29.3 Punkte

๐Ÿ“Œ DevTools Tips: Source maps in DevTools


๐Ÿ“ˆ 29.3 Punkte

๐Ÿ“Œ Google Chrome vor 48.0.2564.109 Developer Tools chrome-devtools-frontend.appspot.com remoteBase erweiterte Rechte


๐Ÿ“ˆ 23.33 Punkte

๐Ÿ“Œ Google Chrome vor 48.0.2564.109 Developer Tools chrome-devtools-frontend.appspot.com remoteBase erweiterte Rechte


๐Ÿ“ˆ 23.33 Punkte

๐Ÿ“Œ Google Chrome prior 48.0.2564.109 Developer Tools chrome-devtools-frontend.appspot.com remoteBase privilege escalation


๐Ÿ“ˆ 23.33 Punkte

๐Ÿ“Œ WebView DevTools, Kotlin meets gRPC, Flutter CodePen support, & more! (Episode #200)


๐Ÿ“ˆ 19.81 Punkte

๐Ÿ“Œ CSS-in-JS support in DevTools


๐Ÿ“ˆ 19.81 Punkte

๐Ÿ“Œ Chrome DevTools 101: DEBUGGING JavaScript


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Google I/O Schedule, TLS in Android P, Chrome 67 DevTools, & More! - TL;DR 108


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Audio apps with Oboe, London Next recap, Chrome 71 DevTools, & much more!


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 60 - What's New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 59 - What's New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Fast Pair update, Android SDK Developers, Chrome 72 DevTools, & more!


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Fast Pair update, Android SDK Developers, Chrome 72 DevTools, & more!


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ 10 Years of Chrome DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ 10 Years of Chrome DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Find your biggest website problems quickly with Chrome DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Coral updates, Chrome 76 DevTools, & Cloud Scheduler


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Google Chrome up to 54 DevTools Out-of-Bounds memory corruption


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Google Chrome up to 55 DevTools URL privilege escalation


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Google Chrome bis 51 Blink devtools.js remoteFrontendUrl erweiterte Rechte


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 101 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 100 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 99 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 98 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 97 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 96 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 95 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte

๐Ÿ“Œ Chrome 94 - Whatโ€™s New in DevTools


๐Ÿ“ˆ 18.99 Punkte











matomo