blob: 41dc7800fce715c52bb55f0e4868d7b913aa656c (
plain)
1
2
3
4
5
6
7
8
9
|
<html>
<body>
<script>
var node = document.createElement("a");
node.href = "http://www.mozilla.org";
document.defaultView.getComputedStyle(node, "").color
</script>
</body>
</html>
|