Bug 65345 - Safari reloads page or crashes when a woff style with border is set on a select field
Summary: Safari reloads page or crashes when a woff style with border is set on a sele...
Status: RESOLVED DUPLICATE of bug 65350
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac (Intel) OS X 10.7
: P1 Critical
Assignee: Nobody
URL: http://redrata.com/2011/07/safari-wof...
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-28 15:42 PDT by p.misc
Modified: 2011-07-29 15:07 PDT (History)
3 users (show)

See Also:


Attachments
crash resulting from loading the http://redrata.com/wp-uploads/2011/07/safari-woff-fail.html url a few times (41.79 KB, text/plain)
2011-07-29 15:03 PDT, p.misc
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description p.misc 2011-07-28 15:42:58 PDT
MacOSX Lion’s Safari crashing on you?  Reloading a page after clicking on a select field?  Running Safari Version 5.1 (7534.48.3)?

There appears to be a bug triggered when you have:

a) a woff format webfont (not eot, or svg, or ttf) and

b) a select field (being clicked)

c) a border css set (e.g. border:none, or boder:1px).

The solution is to not have a woff format webfont and border specified on a select field.

 safari-woff-fail.html

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
 
<head>
<style>
 
@font-face {
    font-family: 'MuseoSans';
    src:
        /*url('http://localhost:8080/mailserv/type-face/Museo-Sans/museosans_500-webfont.eot?') format('eot')*/
 
    url('http://www.huqueerpress.com/type/chaparralpro-regular-webfont.woff')
    format(
    'woff'
    )
}
 
select {
    border: 1px;
    font-family: 'MuseoSans';
}
</style>
 
</head>
<body>
    <form method='post' action='signup.jsp'>
        <select id='foo'>
            <option value='' selected='selected'>Select Country*</option>
            <option value='Zimbabwe'>Zimbabwe</option>
        </select>
    </form>
</body>
</html>
Comment 1 Alexey Proskuryakov 2011-07-29 10:49:07 PDT
Could you please attach a crash log? Please see <http://www.webkit.org/quality/crashlogs.html> for more information.
Comment 2 p.misc 2011-07-29 15:03:29 PDT
Created attachment 102402 [details]
crash resulting from loading the http://redrata.com/wp-uploads/2011/07/safari-woff-fail.html url a few times
Comment 3 mitz 2011-07-29 15:07:07 PDT

*** This bug has been marked as a duplicate of bug 65350 ***