Title: [105628] trunk/Source/WebCore
Revision
105628
Author
[email protected]
Date
2012-01-23 08:37:16 -0800 (Mon, 23 Jan 2012)

Log Message

Not reviewed: annotate inspector's js so that it compiled.

* inspector/front-end/ElementsTreeOutline.js:
* inspector/front-end/TextPrompt.js:
(WebInspector.TextPrompt.SuggestBox.prototype.upKeyPressed):
(WebInspector.TextPrompt.SuggestBox.prototype.downKeyPressed):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (105627 => 105628)


--- trunk/Source/WebCore/ChangeLog	2012-01-23 16:32:56 UTC (rev 105627)
+++ trunk/Source/WebCore/ChangeLog	2012-01-23 16:37:16 UTC (rev 105628)
@@ -1,3 +1,12 @@
+2012-01-23  Pavel Feldman  <[email protected]>
+
+        Not reviewed: annotate inspector's js so that it compiled.
+
+        * inspector/front-end/ElementsTreeOutline.js:
+        * inspector/front-end/TextPrompt.js:
+        (WebInspector.TextPrompt.SuggestBox.prototype.upKeyPressed):
+        (WebInspector.TextPrompt.SuggestBox.prototype.downKeyPressed):
+
 2012-01-23  Philippe Normand  <[email protected]>
 
         [GStreamer] fix WebAudio build after r105431

Modified: trunk/Source/WebCore/inspector/front-end/ElementsTreeOutline.js (105627 => 105628)


--- trunk/Source/WebCore/inspector/front-end/ElementsTreeOutline.js	2012-01-23 16:32:56 UTC (rev 105627)
+++ trunk/Source/WebCore/inspector/front-end/ElementsTreeOutline.js	2012-01-23 16:37:16 UTC (rev 105628)
@@ -1271,6 +1271,9 @@
         this._editing = false;
 
         var treeOutline = this.treeOutline;
+        /**
+         * @param {Protocol.Error=} error
+         */
         function moveToNextAttributeIfNeeded(error)
         {
             if (error)

Modified: trunk/Source/WebCore/inspector/front-end/TextPrompt.js (105627 => 105628)


--- trunk/Source/WebCore/inspector/front-end/TextPrompt.js	2012-01-23 16:32:56 UTC (rev 105627)
+++ trunk/Source/WebCore/inspector/front-end/TextPrompt.js	2012-01-23 16:37:16 UTC (rev 105628)
@@ -1198,12 +1198,12 @@
 
     upKeyPressed: function(event)
     {
-        return this._onPreviousItem(event);
+        return this._onPreviousItem(event, false);
     },
 
     downKeyPressed: function(event)
     {
-        return this._onNextItem(event);
+        return this._onNextItem(event, false);
     },
 
     pageUpKeyPressed: function(event)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to