Top "Shadow-dom" questions

Shadow DOM, a key part of Web Components, allows you to create component-based apps using a subtree of DOM elements maintained in isolation from the main DOM.

What's the substitute for ::shadow and /deep/?

The two shadow-piercing combinators have been deprecated as stated in https://www.chromestatus.com/features/6750456638341120Then what's the substitude for …

web web-component shadow-dom
Data-binding between nested polymer elements

Suppose I have two distinct polymer-elements One should be embedded inside the other using the content placeholder. Is it possible …

data-binding polymer web-component shadow-dom
Inspect Shadow DOM with Firefox

Is there a way to inspect Shadow DOM elements in Firefox like you can do with the Chrome dev tools?

firefox dom shadow-dom
Get shadow root host element

When inserting a script into the shadow root of an element is there a way to refer to the host …

javascript html google-chrome shadow-dom
Shadow-dom support for selenium

I am working on an automation project which uses shadow dom extensively. So every time using execute_script function to …

selenium selenium-chromedriver shadow-dom
How to interact with the elements within #shadow-root (open) while Clearing Browsing Data of Chrome Browser using cssSelector

I had been following the discussion How to automate shadow DOM elements using selenium? to work with #shadow-root (open) elements. …

java css selenium css-selectors shadow-dom
How to use global css styles in shadow dom

Shadow dom encapsulate css styles, selectors don't cross the shadow boundary. Question: How to use global common css styles in …

javascript web-component shadow-dom
Check if element contains #shadow-root

Is it possible to see if a Shadow DOM element exists? I'm not too concerned with manipulating it, or even …

javascript css shadow-dom
Can I use jquery within my custom Polymer elements?

The Polymer documentation says: Polymer provides a custom API for manipulating DOM such that local DOM and light DOM trees …

javascript jquery dom polymer shadow-dom
What is the difference between open and closed shadow DOM encapsulation mode?

I want to create a shadow DOM for an element so I can display elements for a Chrome extension without …

javascript html dom shadow-dom