[Webkit-unassigned] [Bug 52225] New: Webkit crashes when a gradient is applied using the first-line pseudo element

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 11 10:52:51 PST 2011


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

           Summary: Webkit crashes when a gradient is applied using the
                    first-line pseudo element
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh Intel
               URL: http://matiasventura.com/test.htm
        OS/Version: Mac OS X 10.6
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mtiasv at gmail.com


The following code crashes with Webkit for me (can be tested on the url above):

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Test</title>

<style>
body {
    background: #eee;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 200;
}

#wrapper {
    margin: 150px auto;
    width: 700px;
}

.sleeve_main {
    background: #fff;
    margin: 0;
    padding: 100px 40px;
    border-radius: 8px;
}

h2:first-line {
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#EED200), to(#EDBE00));
}
</style>

</head>
<body>

<div id="wrapper">

<div class="sleeve_main">

    <h2>Quisque facilisis erat a dui. Nam malesuada ornare dolor.</h2>

</div>
</div>
</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