test_shadow_root_adopted_styles.html (360B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <body> 4 <script> 5 document.body.attachShadow({mode: "open"}).innerHTML = ` 6 <div class="target"></div> 7 `; 8 const sheet = new CSSStyleSheet(); 9 document.body.shadowRoot.adoptedStyleSheets = [sheet]; 10 sheet.replaceSync(".target { width: 100px; height: 100px; border-style: solid; border-color: blue; }"); 11 </script>