We should message the UI process when contentSize changes. This will enable us to account for dynamic heights in our scrolling performance test. rdar://problem/19963165
Created attachment 247869 [details] Patch
Comment on attachment 247869 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=247869&action=review r=me > Source/WebKit2/UIProcess/PageClient.h:-158 > -#if PLATFORM(EFL) > virtual void didChangeContentSize(const WebCore::IntSize&) = 0; > -#endif Since you're unmasking a pure virtual here, you'll need to update the Gtk+ subclass of PageClient as well.
(In reply to comment #2) > Comment on attachment 247869 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=247869&action=review > > r=me > > > Source/WebKit2/UIProcess/PageClient.h:-158 > > -#if PLATFORM(EFL) > > virtual void didChangeContentSize(const WebCore::IntSize&) = 0; > > -#endif > > Since you're unmasking a pure virtual here, you'll need to update the Gtk+ > subclass of PageClient as well. Thanks Andreas! I fixed this. http://trac.webkit.org/changeset/181023