[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:20:01 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 36ff5c58b835caf72fce5ed8d786685443d5cf5b
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 19 15:06:05 2010 +0000

    2010-08-19  Andrey Kosyakov  <caseq at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: expose Panel.onSelectionChanged in extension API
            https://bugs.webkit.org/show_bug.cgi?id=44171
    
            * inspector/extensions-api-expected.txt:
            * inspector/extensions-expected.txt:
    2010-08-19  Andrey Kosyakov  <caseq at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: expose Panel.onSelectionChanged in extension API
            https://bugs.webkit.org/show_bug.cgi?id=44171
    
            * inspector/front-end/ExtensionAPI.js:
            (injectedExtensionAPI.PanelImpl):
            (injectedExtensionAPI):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65672 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 2edf86d..eccf2af 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-19  Andrey Kosyakov  <caseq at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: expose Panel.onSelectionChanged in extension API
+        https://bugs.webkit.org/show_bug.cgi?id=44171
+
+        * inspector/extensions-api-expected.txt:
+        * inspector/extensions-expected.txt:
+
 2010-08-19  Andrei Popescu  <andreip at google.com>
 
         Reviewed by Jeremy Orlow.
diff --git a/LayoutTests/inspector/extensions-api-expected.txt b/LayoutTests/inspector/extensions-api-expected.txt
index 8f1a32d..35a99d2 100644
--- a/LayoutTests/inspector/extensions-api-expected.txt
+++ b/LayoutTests/inspector/extensions-api-expected.txt
@@ -23,9 +23,17 @@ RUNNING TEST: extension_testAPI
     panels : {
         elements : {
             createSidebarPane : <function>
+            onSelectionChanged : {
+                addListener : <function>
+                removeListener : <function>
+            }
         }
         scripts : {
             createSidebarPane : <function>
+            onSelectionChanged : {
+                addListener : <function>
+                removeListener : <function>
+            }
         }
         create : <function>
     }
diff --git a/LayoutTests/inspector/extensions-expected.txt b/LayoutTests/inspector/extensions-expected.txt
index 688c666..3924a6a 100644
--- a/LayoutTests/inspector/extensions-expected.txt
+++ b/LayoutTests/inspector/extensions-expected.txt
@@ -7,6 +7,10 @@ done createPanel
 Panel created
 {
     createSidebarPane : <function>
+    onSelectionChanged : {
+        addListener : <function>
+        removeListener : <function>
+    }
     onSearch : {
         addListener : <function>
         removeListener : <function>
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7fe359f..c1bdad5 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-19  Andrey Kosyakov  <caseq at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: expose Panel.onSelectionChanged in extension API
+        https://bugs.webkit.org/show_bug.cgi?id=44171
+
+        * inspector/front-end/ExtensionAPI.js:
+        (injectedExtensionAPI.PanelImpl):
+        (injectedExtensionAPI):
+
 2010-08-19  Andrei Popescu  <andreip at google.com>
 
         Reviewed by Jeremy Orlow.
diff --git a/WebCore/inspector/front-end/ExtensionAPI.js b/WebCore/inspector/front-end/ExtensionAPI.js
index 476a463..a89dcf1 100644
--- a/WebCore/inspector/front-end/ExtensionAPI.js
+++ b/WebCore/inspector/front-end/ExtensionAPI.js
@@ -160,7 +160,6 @@ Panels.prototype = {
 function PanelImpl(id)
 {
     this._id = id;
-    this.onSelectionChanged = new EventSink("panel-objectSelected-" + id);
 }
 
 PanelImpl.prototype = {
@@ -182,6 +181,7 @@ function Panel(id)
 {
     var impl = new PanelImpl(id);
     this.createSidebarPane = bind(impl.createSidebarPane, impl);
+    this.onSelectionChanged = new EventSink("panel-objectSelected-" + id);
 }
 
 function ExtensionPanel(id)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list