google-chrome-html5video-controls icon indicating copy to clipboard operation
google-chrome-html5video-controls copied to clipboard

::shadow selector is deprecatiated

Open zvodd opened this issue 7 years ago • 0 comments

See

Might need to patch in the styles by moving all the ::shadow css into another file and removing the preceding XXX::shadow selector, then loading the stylesheet into shadow dom. i.e. something like:

var eStyle = document.createElement("link");
eStyle.href = chrome.runtime.getURL("./shadow_style.css");
document.querySelector(".sophis-video-control").shadowRoot.appendChild(eStyle);

zvodd avatar Nov 27 '17 12:11 zvodd