[Webkit-unassigned] [Bug 85868] REGRESSION(r116395): css3/filters/custom/filter-repaint-custom-rotated.html fails on Chromium-Mac

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun May 20 23:20:24 PDT 2012


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





--- Comment #2 from Kent Tamura <tkent at chromium.org>  2012-05-20 23:19:28 PST ---
I confirmed the size of the green box was not changed by r116395.  Just the repaint area was enlarged.

       if (localClipRect != PaintInfo::infiniteRect()) { 
+          if ((flags & IncludeSelfTransform) && layer->paintsWithTransform(PaintBehaviorNormal)) 
+              localClipRect = layer->transform()->mapRect(localClipRect); 

localClipRect was (0,0) 100x100 before the mapRect() call. After that, it becomes (-1,-1) 101x101.
In TransformationMatric::mapRect(), the variable 'resultQuad' is:
  (100, -1.42109e-14) (100, 100) (1.42109e-14, 100) (-1.42109e-14, 7.99361e-15)

It looks an ignorable error.

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