[Webkit-unassigned] [Bug 60450] border-color: transparent or rgba(0, 0, 0, 0) doesn't make <select> border disappear
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Sun May 8 23:25:18 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=60450
Mihnea Ovidenie <mihnea at adobe.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mihnea at adobe.com
--- Comment #2 from Mihnea Ovidenie <mihnea at adobe.com> 2011-05-08 23:25:19 PST ---
(In reply to comment #1)
> Created an attachment (id=92735)
--> (https://bugs.webkit.org/attachment.cgi?id=92735&action=review) [details]
> Switching to use rgba(0,0,0,0) instead of 'transparent' doesn't work around this
Hi,
What version of nightly are you using? I have made a small sample:
<html>
<style>
#SEL {
border: 1px solid; border-color: transparent;
}
#SEL1 {
border: 1px solid; border-color: rgba(0,0,0,0);
}
#SEL2 {
border: 1px solid; border-color: black;
}
</style>
<body>
<select id="SEL">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
<select id="SEL1">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
<select id="SEL2">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
</body>
</html>
In this sample, the border for the first 2 select items is gone. Maybe i am missing your point?
Regards,
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list