Bug 53941 - Inform the UIProcess when main frame scrollbars change
Summary: Inform the UIProcess when main frame scrollbars change
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other OS X 10.5
: P2 Normal
Assignee: Sam Weinig
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2011-02-07 14:22 PST by Sam Weinig
Modified: 2011-02-07 14:32 PST (History)
0 users

See Also:


Attachments
Patch (9.55 KB, patch)
2011-02-07 14:25 PST, Sam Weinig
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Sam Weinig 2011-02-07 14:22:44 PST
Inform the UIProcess when main frame scrollbars change
Comment 1 Sam Weinig 2011-02-07 14:25:11 PST
Created attachment 81519 [details]
Patch
Comment 2 Sam Weinig 2011-02-07 14:26:20 PST
<rdar://problem/8967496>
Comment 3 Brian Weinstein 2011-02-07 14:28:01 PST
Comment on attachment 81519 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=81519&action=review

> Source/WebKit2/UIProcess/WebPageProxy.cpp:2544
> +    printf("WebPageProxy::didChangeScrollbarsForMainFrame %s %s\n", hasHorizontalScrollbar ? "YES" : "NO", hasVecticalScrollbar ? "YES" : "NO");

Did you mean to keep this?
Comment 4 Darin Adler 2011-02-07 14:30:01 PST
Comment on attachment 81519 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=81519&action=review

> Source/WebKit2/UIProcess/WebPageProxy.cpp:2539
> +void WebPageProxy::didChangeScrollbarsForMainFrame(bool hasHorizontalScrollbar, bool hasVecticalScrollbar)

vectical?
Comment 5 Sam Weinig 2011-02-07 14:32:42 PST
Landed in r77846.