Changeset 16031 in webkit


Ignore:
Timestamp:
Aug 24, 2006 5:41:15 PM (18 years ago)
Author:
thatcher
Message:

Reviewed by Darin.

  • WebView/WebFrame.m: (-[WebFrame _updateBackground]): reworded the comment about scroll view and setDrawsBackground:YES
  • WebView/WebView.m: (-[WebViewPrivate dealloc]): release the background color
Location:
trunk/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/ChangeLog

    r16027 r16031  
     12006-08-24  Timothy Hatcher  <timothy@apple.com>
     2
     3        Reviewed by Darin.
     4
     5        * WebView/WebFrame.m:
     6        (-[WebFrame _updateBackground]): reworded the comment about scroll view and setDrawsBackground:YES
     7        * WebView/WebView.m:
     8        (-[WebViewPrivate dealloc]): release the background color
     9
    1102006-08-24  Timothy Hatcher  <timothy@apple.com>
    211
  • trunk/WebKit/WebView/WebFrame.m

    r16027 r16031  
    22432243
    22442244    for (WebFrame *frame = self; frame; frame = [frame _traverseNextFrameStayWithin:self]) {
    2245         // Never call setDrawsBackground:YES on the scroll view or the background color will
    2246         // flash between pages loads, very noticeable during the PLT.
     2245        // Never call setDrawsBackground:YES here on the scroll view or the background color will
     2246        // flash between pages loads. setDrawsBackground:YES will be called in WebFrame's _frameLoadCompleted.
    22472247        if (!drawsBackground)
    22482248            [[[frame frameView] _scrollView] setDrawsBackground:NO];
  • trunk/WebKit/WebView/WebView.m

    r16027 r16031  
    396396    [applicationNameForUserAgent release];
    397397    [userAgent release];
     398    [backgroundColor release];
    398399   
    399400    [preferences release];
Note: See TracChangeset for help on using the changeset viewer.