Remove ScrollView::platformContentsSize
Created attachment 107544 [details] Patch
Committed r95227: <http://trac.webkit.org/changeset/95227>
This seems to have caused a lot of new test failures, see http://build.webkit.org/results/SnowLeopard%20Intel%20Debug%20(Tests)/r95228%20(2173)/results.html
Reopening this since the patch broke a bunch of tests and had to be rolled out
Created attachment 108043 [details] Patch
Comment on attachment 108043 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=108043&action=review Need to be sure to do more testing this time! > Source/WebKit/mac/WebView/WebFrameView.mm:170 > - documentView = [[viewClass alloc] initWithFrame:[self bounds]]; > + documentView = [[viewClass alloc] initWithFrame:NSZeroRect]; Just calling the init method will do the same thing. I think that’s more elegant than passing NSZeroRect.
Committed r95570: <http://trac.webkit.org/changeset/95570>