[Webkit-unassigned] [Bug 202198] New: <select> dropdown with text-rendering: optimizeLegibility can crash safari
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Sep 25 04:47:35 PDT 2019
https://bugs.webkit.org/show_bug.cgi?id=202198
Bug ID: 202198
Summary: <select> dropdown with text-rendering:
optimizeLegibility can crash safari
Product: WebKit
Version: Other
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Critical
Priority: P2
Component: CSS
Assignee: webkit-unassigned at lists.webkit.org
Reporter: yann.lohier at gmail.com
Hi,
Here is a test case: the dropdown has a custom appearance and inherits text-rendering: optimizeLegibility from the body.
Click it to crash the page.
<!doctype html>
<html>
<head>
<style>
body
{
text-rendering: optimizeLegibility;
}
select
{
border: 1px solid red;
height: 32px;
width: 200px;
-webkit-appearance: none;
/* text-rendering: auto; uncomment and it's fine */
}
</style>
</head>
<body>
<select>
<option>click</option>
<option>click</option>
</select>
</body>
</html>
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20190925/568c80a6/attachment.html>
More information about the webkit-unassigned
mailing list