mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
10 lines
228 B
HTML
10 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>
|