You cannot access the Shadow DOM created by the browser to display a control called #shadow-root (user-agent) in Dev Tools. <input> is one example.
You can access only the open custom Shadow DOM (those that you create yourself), with the option { mode: 'open' } .
element.attachShadow( { mode: 'open' } )
Refresh
This is true for most standard UX HTML elements: <input> , <video> , <textarea> , <select> , <audio> , etc.
source share