Bug 51150 - WebView's _scaleWebView SPI doesn't work on pages with compositing layers
Summary: WebView's _scaleWebView SPI doesn't work on pages with compositing layers
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac OS X 10.5
: P2 Normal
Assignee: Beth Dakin
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2010-12-15 16:46 PST by Beth Dakin
Modified: 2010-12-15 18:18 PST (History)
2 users (show)

See Also:


Attachments
Patch (2.50 KB, patch)
2010-12-15 17:23 PST, Beth Dakin
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Beth Dakin 2010-12-15 16:46:08 PST
If you apply a scale factor to a page with compositing layers via the _scaleWebView SPI, the composited layers will scale, and the other layers will not. Also, the painting is clipped at the boundaries of the size of the un-scaled WebView. This does not happen on pages without compositing layers.

<rdar://problem/8604713>
Comment 1 Beth Dakin 2010-12-15 17:23:35 PST
Created attachment 76714 [details]
Patch

Simon was worried that docWidth and docHeight might be incorrect at times -- especially if they could ever be negative. I feel confident that they are correct here because of Hyatt's description in the ChangeLog for r73885: "RenderView now uses docLeft/Top/Height/Width functions, which are just overflow queries that account for writing modes.  These methods are now the preferred way to query for the physical dimensions of a document." Also, all of the layout tests pass, and I did some testing on LTR and RTL web sites with compositing layers.
Comment 2 Simon Fraser (smfr) 2010-12-15 17:45:45 PST
(In reply to comment #1)
> Created an attachment (id=76714) [details]
> Patch
> 
> Simon was worried that docWidth and docHeight might be incorrect at times -- especially if they could ever be negative.

To clarify, it's top/left I'm worried about. I think the graphics layer origin might have to be adjusted in some situations (like RTL, or vertical text).
Comment 3 Beth Dakin 2010-12-15 18:15:18 PST
Thanks Darin!

And thanks for clarifying, Simon. Simon and I looked at this more closely, and he was correct that there are still some problems on RTL pages with compositing layers that start with a horizontal scrollbar and content anchored to the right side of the page. I have a test case for that and will file a follow-up bug. 

In the meantime, I committed this patch with revision 74168.
Comment 4 Beth Dakin 2010-12-15 18:18:28 PST
Filed https://bugs.webkit.org/show_bug.cgi?id=51158 as a follow-up for the RTL issue mentioned above.