blob: 0cd1dc99c6c981adb314f52c44f507bd3a3bd8f7 (
plain)
1
2
3
4
5
6
7
8
9
|
<!DOCTYPE html>
<body>
<style scoped>span { color: red; }</style>
<div><span></span></div>
<script>
var div = document.querySelector("div");
div.remove();
getComputedStyle(div.firstChild, "").color;
</script>
|