mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 19:33:08 +09:00
9 lines
228 B
HTML
9 lines
228 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<style scoped>span { color: red; }</style>
|
|
<div><span></span></div>
|
|
<script>
|
|
var div = document.querySelector("div");
|
|
div.parentNode.removeChild(div);
|
|
getComputedStyle(div.firstChild, "").color;
|
|
</script>
|