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

sullivan sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:04:21 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 724f886e467ad43cdda35549ac2331aae03922af
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 23 00:43:44 2003 +0000

    	- fixed 3460652 -- REGRESSION (100-110+): Can't tab out of a
    	frameset page
    
            Reviewed by Darin (actually he made the change on my machine)
    
            * khtml/html/html_baseimpl.cpp:
            (HTMLFrameSetElementImpl::defaultEventHandler):
    	only set defaultHandled for the one event that we actually
    	handle (mouse event to resize frame borders); this was always
    	being set, hence preventing key events from being used elsewhere.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5244 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index c20146d..d0958fd 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,16 @@
+2003-10-22  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3460652 -- REGRESSION (100-110+): Can't tab out of a 
+	frameset page
+
+        Reviewed by Darin (actually he made the change on my machine)
+
+        * khtml/html/html_baseimpl.cpp:
+        (HTMLFrameSetElementImpl::defaultEventHandler):
+	only set defaultHandled for the one event that we actually
+	handle (mouse event to resize frame borders); this was always
+	being set, hence preventing key events from being used elsewhere.
+
 2003-10-22  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3454067.  RenderText's repaint wasn't called because of recent changes to de-virtualize repaint.  Modified getAbsoluteRepaintRect() to return containing block's getAbsoluteRepaintRect().
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index c20146d..d0958fd 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,16 @@
+2003-10-22  John Sullivan  <sullivan at apple.com>
+
+	- fixed 3460652 -- REGRESSION (100-110+): Can't tab out of a 
+	frameset page
+
+        Reviewed by Darin (actually he made the change on my machine)
+
+        * khtml/html/html_baseimpl.cpp:
+        (HTMLFrameSetElementImpl::defaultEventHandler):
+	only set defaultHandled for the one event that we actually
+	handle (mouse event to resize frame borders); this was always
+	being set, hence preventing key events from being used elsewhere.
+
 2003-10-22  Richard Williamson   <rjw at apple.com>
 
 	Fixed 3454067.  RenderText's repaint wasn't called because of recent changes to de-virtualize repaint.  Modified getAbsoluteRepaintRect() to return containing block's getAbsoluteRepaintRect().
diff --git a/WebCore/khtml/html/html_baseimpl.cpp b/WebCore/khtml/html/html_baseimpl.cpp
index 5932f1c..c2b9f4a 100644
--- a/WebCore/khtml/html/html_baseimpl.cpp
+++ b/WebCore/khtml/html/html_baseimpl.cpp
@@ -574,10 +574,11 @@ void HTMLFrameSetElementImpl::attach()
 
 void HTMLFrameSetElementImpl::defaultEventHandler(EventImpl *evt)
 {
-    if (evt->isMouseEvent() && !noresize && m_render)
+    if (evt->isMouseEvent() && !noresize && m_render) {
         static_cast<khtml::RenderFrameSet *>(m_render)->userResize(static_cast<MouseEventImpl*>(evt));
+        evt->setDefaultHandled();
+    }
 
-    evt->setDefaultHandled();
     HTMLElementImpl::defaultEventHandler(evt);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list