[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:23:28 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0a33b50f21a389e06b9ca5e723c8cf2f889db0f0
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jan 24 00:59:23 2004 +0000

    WebCore:
    
            Reviewed by Richard
    
            * kwq/KWQKHTMLPart.mm:
            (KWQKHTMLPart::setShowsFirstResponder): Now adjusts caret visibility
    	apprpropriately.
    
    WebKit:
    
            Reviewed by Richard
    
            * WebView.subproj/WebHTMLView.m:
            (-[WebHTMLView updateShowsFirstResponder]): Renamed from updateFocusRing:
            since it is now used to kill caret blink timer.
            (-[WebHTMLView windowDidBecomeKey:]): Now calls new updateShowsFirstResponder
    	method.
            (-[WebHTMLView windowDidResignKey:]): Ditto.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5972 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index f074570..8435b42 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,11 @@
+2004-01-23  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Richard
+
+        * kwq/KWQKHTMLPart.mm:
+        (KWQKHTMLPart::setShowsFirstResponder): Now adjusts caret visibility
+	apprpropriately.
+
 2004-01-23  David Hyatt  <hyatt at apple.com>
 
 	Stub out @namespace support.  Implement the callbacks into the stylesheet that will enable us to
diff --git a/WebCore/kwq/KWQKHTMLPart.mm b/WebCore/kwq/KWQKHTMLPart.mm
index 4d38608..208fc1a 100644
--- a/WebCore/kwq/KWQKHTMLPart.mm
+++ b/WebCore/kwq/KWQKHTMLPart.mm
@@ -2715,6 +2715,7 @@ void KWQKHTMLPart::setShowsFirstResponder(bool flag)
             if (node && node->renderer())
                 node->renderer()->repaint();
         }
+        getKHTMLSelection().setVisible(flag);
     }
 }
 
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7c7121e..a43e0b5 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2004-01-23  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Richard
+
+        * WebView.subproj/WebHTMLView.m:
+        (-[WebHTMLView updateShowsFirstResponder]): Renamed from updateFocusRing:
+        since it is now used to kill caret blink timer.
+        (-[WebHTMLView windowDidBecomeKey:]): Now calls new updateShowsFirstResponder
+	method.
+        (-[WebHTMLView windowDidResignKey:]): Ditto.
+
 2004-01-22  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed: <rdar://problem/3537542>: support for copying HTML
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index 8c09a99..8d5da0d 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -997,7 +997,7 @@ static WebHTMLView *lastHitView = nil;
         name:NSMouseMovedNotification object:nil];
 }
 
-- (void)updateFocusRing
+- (void)updateShowsFirstResponder
 {
     [[self _bridge] setShowsFirstResponder:[[self window] isKeyWindow]];
 }
@@ -1397,7 +1397,7 @@ static WebHTMLView *lastHitView = nil;
     ASSERT([notification object] == [self window]);
     [self addMouseMovedObserver];
     [self updateTextBackgroundColor];
-    [self updateFocusRing];
+    [self updateShowsFirstResponder];
 }
 
 - (void)windowDidResignKey: (NSNotification *)notification
@@ -1405,7 +1405,7 @@ static WebHTMLView *lastHitView = nil;
     ASSERT([notification object] == [self window]);
     [self removeMouseMovedObserver];
     [self updateTextBackgroundColor];
-    [self updateFocusRing];
+    [self updateShowsFirstResponder];
 }
 
 - (void)windowWillClose:(NSNotification *)notification

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list