[Webkit-unassigned] [Bug 106234] New: Setting font style crashes wxWebKit with jQuery Mobile

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 7 10:57:03 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=106234

           Summary: Setting font style crashes wxWebKit with jQuery Mobile
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows 7
            Status: UNCONFIRMED
          Severity: Critical
          Priority: P2
         Component: WebKit wx
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: gh at nsbasic.com
                CC: kevino at theolliviers.com


Created an attachment (id=181534)
 --> (https://bugs.webkit.org/attachment.cgi?id=181534&action=review)
Python + HTML code

Python:

import wx
import wx.webview

app = wx.App(redirect=False)
frame = wx.webview.WebBrowserShell('wxWebKit Test')
frame.Show()
app.MainLoop()

HTML:

<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>

<style type="text/css"> 
// the name of the font or its existence does not matter
@font-face {font-family: xxx; src: url('xxx.ttf');}
</style>
</head>

<body>
<input type=text style="font-family:xxx;" value="This is xxx Font." />
</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