test_shared_adopted_styles_ref.html (574B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <body> 4 <div class="target"></div> 5 <span id="shadowHostA"></span> 6 <span id="shadowHostB"></span> 7 <style> .target { width: 100px; height: 100px; border-style: solid; border-color: blue; } </style> 8 </body> 9 <script> 10 const innerHTMLText = ` 11 <div class="target"></div> 12 <style> .target { width: 100px; height: 100px; border-style: solid; border-color: blue; } </style> 13 `; 14 shadowHostA.attachShadow({mode: "open"}).innerHTML = innerHTMLText; 15 shadowHostB.attachShadow({mode: "open"}).innerHTML = innerHTMLText; 16 </script>