test_shadow_root_adopted_styles_ref.html (273B)
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 <style> 8 .target { width: 100px; height: 100px; border-style: solid; border-color: blue; } 9 </style> 10 `; 11 </script>