blob: 0dd8a8b53004f1afed08725e6b371742f1675a6a (
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>
|