[Webkit-unassigned] [Bug 53083] New: SVG: "filter" style not applied to "div"s in xhtml "foreignObject"s

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 25 06:42:59 PST 2011


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

           Summary: SVG: "filter" style not applied to "div"s in xhtml
                    "foreignObject"s
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows Vista
            Status: NEW
          Severity: Normal
          Priority: P1
         Component: SVG
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: skylined at chromium.org
                CC: eric at webkit.org, zimmermann at kde.org


Created an attachment (id=80059)
 --> (https://bugs.webkit.org/attachment.cgi?id=80059&action=review)
Repro

Chromium bug: http://code.google.com/p/chromium/issues/detail?id=70760

Repro:

<?xml version="1.0" standalone="yes"?>
<svg xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="Gaussian_Blur">
      <feGaussianBlur in="SourceGraphic" stdDeviation="5"/>
    </filter>
  </defs>
  <g style="filter:url(#Gaussian_Blur)">
    <foreignObject x="0" y="0" width="100%" height="100%">
      <body xmlns="http://www.w3.org/1999/xhtml" style="margin:0px;padding:50px">
        <div style="border:10px solid red;width:30px;height:30px"></div>
        <span style="border:10px solid green;width:30px;height:30px"></span>
      </body>
    </foreignObject>
  </g>
</svg>

The red "div" element is not blurred, the green "span" element is.

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