[Webkit-unassigned] [Bug 70552] iframes seem to occasionally doubly scale or scale incorrectly when pageScaleFactor != 1.0

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Oct 26 14:05:07 PDT 2011


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





--- Comment #4 from Fady Samuel <fsamuel at chromium.org>  2011-10-26 14:05:07 PST ---
I believe I have a fix for this:

Changing:

documentStyle->setPageScaleTransform(document->page() ? document->page()->pageScaleFactor() : 1); 

to

documentStyle->setPageScaleTransform(frame ? frame->frameScaleFactor() : 1);  

in CSSStyleSelector::styleForDocument

fixes the issue. Now I just have to come up with an automated layout test for this.

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