Bug 53941

Summary: Inform the UIProcess when main frame scrollbars change
Product: WebKit Reporter: Sam Weinig <sam>
Component: New BugsAssignee: Sam Weinig <sam>
Status: RESOLVED FIXED    
Severity: Normal Keywords: InRadar
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Other   
OS: OS X 10.5   
Attachments:
Description Flags
Patch andersca: review+

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.