[Webkit-unassigned] [Bug 126976] New: [REGRESSION] Forward referencing with -webkit-filter doesn't work anymore

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 14 04:05:16 PST 2014


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

           Summary: [REGRESSION] Forward referencing with -webkit-filter
                    doesn't work anymore
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: krit at webkit.org
                CC: simon.fraser at apple.com, dino at apple.com,
                    rniwa at webkit.org, akling at apple.com


<style>
div {
    width: 200px;
    height: 200px;
    -webkit-filter: url(#f);
}
</style>

<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<svg width="200" height="200">
    <filter id="f">
    <feFlood flood-color="green"/>
    </filter>
</svg>

Doesn't work, adding the SVG element at the beginning works.

<svg width="200" height="200">
    <filter id="f">
    <feFlood flood-color="green"/>
    </filter>
</svg>
<div></div>
...

I don't know the regression window.

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