There's no way to access the shadow root of native HTML 5 elements.
Not useful in this case, but with Chrome it's possible to access a custom created shadow root:
var root = document.querySelector("#test_button").createShadowRoot();
root.innerHTML = "<button id='inner_button'>Button in button</button"
<button id="test_button"></button>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…