in my case ,I have html codes and css below:
HTML;
<div id="errorDiv" class="error" style="">
A message cannot contain a blank message body.
<br/>
</div>
CSS:
.error {
color:red;
}
* {
margin:0;
}
when I am trying to use getCSS("errorDiv","color") it returns with
value rgb(0,0,0) in Firefox 3.0
but the right value should be red or rgb(255,0,0)
How can I get the expected value?
--
You received this message because you are subscribed to the Google Groups
"tellurium-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tellurium-users?hl=en.