blob: 4ea708bc39cdf7b41e7253c9653735d4ebb17115 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<html>
<head><script>
function boom()
{
var f = document.getElementById("f");
window.getComputedStyle(f).getPropertyValue("text-decoration");
}
</script></head>
<body onload="boom();"><font id="f" color="black">a</font></body>
</html>
|