mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-26 17:28:38 +09:00
14 lines
291 B
HTML
14 lines
291 B
HTML
|
|
<!doctype html>
|
||
|
|
<div id="host"></div>
|
||
|
|
<script>
|
||
|
|
let root = host.attachShadow({mode: 'open'});
|
||
|
|
root.innerHTML = `
|
||
|
|
<style>
|
||
|
|
#test {
|
||
|
|
color: green;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<span id="test">Should be green</span>
|
||
|
|
<span id="test2">Should not be green</span>
|
||
|
|
`;
|
||
|
|
</script>
|