[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

joepeck at webkit.org joepeck at webkit.org
Thu Oct 29 20:49:57 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 8f88b07368cfef5b4d00371e97c8708d0e800d97
Author: joepeck at webkit.org <joepeck at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Oct 22 15:28:58 2009 +0000

    2009-10-21  Joseph Pecoraro  <joepeck at webkit.org>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: windowFocused and windowBlurred Fail to Clear/Mark Inspector as "inactive"
            https://bugs.webkit.org/show_bug.cgi?id=30663
    
            * inspector/front-end/inspector.js:
            (WebInspector.windowFocused):
            (WebInspector.windowBlurred):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49939 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e91d68b..ce34993 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2009-10-21  Joseph Pecoraro  <joepeck at webkit.org>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: windowFocused and windowBlurred Fail to Clear/Mark Inspector as "inactive"
+        https://bugs.webkit.org/show_bug.cgi?id=30663
+
+        * inspector/front-end/inspector.js:
+        (WebInspector.windowFocused):
+        (WebInspector.windowBlurred):
+
 2009-10-22  Joseph Pecoraro  <joepeck at webkit.org>
 
         Reviewed by Pavel Feldman.
diff --git a/WebCore/inspector/front-end/inspector.js b/WebCore/inspector/front-end/inspector.js
index 17b02a1..f51f31b 100644
--- a/WebCore/inspector/front-end/inspector.js
+++ b/WebCore/inspector/front-end/inspector.js
@@ -511,13 +511,13 @@ WebInspector.windowResize = function(event)
 
 WebInspector.windowFocused = function(event)
 {
-    if (event.target.nodeType === Node.DOCUMENT_NODE)
+    if (event.target === document.defaultView)
         document.body.removeStyleClass("inactive");
 }
 
-WebInspector.windowBlured = function(event)
+WebInspector.windowBlurred = function(event)
 {
-    if (event.target.nodeType === Node.DOCUMENT_NODE)
+    if (event.target === document.defaultView)
         document.body.addStyleClass("inactive");
 }
 
@@ -1424,7 +1424,7 @@ WebInspector.linkifyURL = function(url, linkText, classes, isExternal)
 WebInspector.addMainEventListeners = function(doc)
 {
     doc.defaultView.addEventListener("focus", this.windowFocused.bind(this), true);
-    doc.defaultView.addEventListener("blur", this.windowBlured.bind(this), true);
+    doc.defaultView.addEventListener("blur", this.windowBlurred.bind(this), true);
     doc.addEventListener("click", this.documentClick.bind(this), true);
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list