shadow-at-import.html (437B)
1 <!doctype html> 2 <title>CSS Test: @import in Shadow DOM</title> 3 <link rel="help" href="https://drafts.csswg.org/css-cascade/#at-import"> 4 <link rel="match" href="reference/green-box.html"/> 5 <p>Test passes if you see a single 100px by 100px green box below.</p> 6 <div id="host">FAIL</div> 7 <script> 8 host.attachShadow({ mode: "open" }).innerHTML = ` 9 <style> 10 @import url("resources/host-green-box.css"); 11 </style> 12 `; 13 </script>