[Webkit-unassigned] [Bug 33622] <SELECT> doesn't properly render with -webkit-gradient
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Aug 16 18:49:15 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=33622
infoeon at gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |infoeon at gmail.com
--- Comment #1 from infoeon at gmail.com 2011-08-16 18:49:15 PST ---
Below is a test case.
<!DOCTYPE HTML>
<html>
<head>
<style>
body{
background-color: yellow;
}
* {
border-color: green;
color: blue;
}
select, input{
background-color: red;
background-image: repeating-linear-gradient(45deg, grey, grey 3px, orange 3px, orange 6px);
background-image: -moz-repeating-linear-gradient(45deg, grey, grey 3px, orange 3px, orange 6px) !important;
background-image: -webkit-repeating-linear-gradient(45deg, grey, grey 3px, orange 3px, orange 6px) !important;
}
</style>
<title>Test CSS</title>
</head>
<body>
<select name="test1">
<option selected>I should have a cool gradient.</option>
<option>Banana Gum</option>
</select>
<input type="text" name="test2" value="123">
</body>
</html>
--
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