WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
85868
REGRESSION(
r116395
): css3/filters/custom/filter-repaint-custom-rotated.html fails on Chromium-Mac
https://bugs.webkit.org/show_bug.cgi?id=85868
Summary
REGRESSION(r116395): css3/filters/custom/filter-repaint-custom-rotated.html f...
Kent Tamura
Reported
2012-05-07 23:54:35 PDT
http://test-results.appspot.com/dashboards/flakiness_dashboard.html#showExpectations=true&showLargeExpectations=true&tests=css3%2Ffilters%2Fcustom%2Ffilter-repaint-custom-rotated.html
Looks off-by-one. Does anyone have an idea waht's wrong?
Attachments
Add attachment
proposed patch, testcase, etc.
Eric Seidel (no email)
Comment 1
2012-05-07 23:55:34 PDT
http://trac.webkit.org/changeset/116395
Kent Tamura
Comment 2
2012-05-20 23:19:28 PDT
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.
Kent Tamura
Comment 3
2012-05-21 17:58:29 PDT
Oh, this issue has been resolved by ENABLE_SUBPIXEL_LAYOUT. Awesome :-)
Kent Tamura
Comment 4
2012-05-22 03:15:01 PDT
Removed the failure expectation by
http://trac.webkit.org/changeset/117941
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug