Title: [93604] trunk/Source/WebCore
Revision
93604
Author
[email protected]
Date
2011-08-23 08:08:14 -0700 (Tue, 23 Aug 2011)

Log Message

2011-08-23  Pavel Feldman  <[email protected]>

        Not reviewed: fixing build. One line drive-by typo fix in the inspector shortcut (Esc -> Backspace).

        * inspector/InspectorDOMAgent.cpp:
        (WebCore::InspectorDOMAgent::highlightFrame):
        * inspector/front-end/treeoutline.js:
        (TreeOutline.prototype._treeKeyDown):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (93603 => 93604)


--- trunk/Source/WebCore/ChangeLog	2011-08-23 14:38:07 UTC (rev 93603)
+++ trunk/Source/WebCore/ChangeLog	2011-08-23 15:08:14 UTC (rev 93604)
@@ -1,3 +1,12 @@
+2011-08-23  Pavel Feldman  <[email protected]>
+
+        Not reviewed: fixing build. One line drive-by typo fix in the inspector shortcut (Esc -> Backspace).
+
+        * inspector/InspectorDOMAgent.cpp:
+        (WebCore::InspectorDOMAgent::highlightFrame):
+        * inspector/front-end/treeoutline.js:
+        (TreeOutline.prototype._treeKeyDown):
+
 2011-08-23  Alexander Pavlov  <[email protected]>
 
         Web Inspector: differentiate element highlight colors for margin and padding

Modified: trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp (93603 => 93604)


--- trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp	2011-08-23 14:38:07 UTC (rev 93603)
+++ trunk/Source/WebCore/inspector/InspectorDOMAgent.cpp	2011-08-23 15:08:14 UTC (rev 93604)
@@ -1099,7 +1099,7 @@
 }
 
 void InspectorDOMAgent::highlightFrame(
-    ErrorString* error,
+    ErrorString*,
     const String& frameId,
     const RefPtr<InspectorObject>* color,
     const RefPtr<InspectorObject>* outlineColor)

Modified: trunk/Source/WebCore/inspector/front-end/treeoutline.js (93603 => 93604)


--- trunk/Source/WebCore/inspector/front-end/treeoutline.js	2011-08-23 14:38:07 UTC (rev 93603)
+++ trunk/Source/WebCore/inspector/front-end/treeoutline.js	2011-08-23 15:08:14 UTC (rev 93604)
@@ -1,4 +1,4 @@
-/*
+  /*
  * Copyright (C) 2007 Apple Inc.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -398,7 +398,7 @@
                     this.selectedTreeElement.expand();
             }
         }
-    } else if (event.keyCode === 27 /* Esc */ || event.keyCode === 46 /* Delete */) {
+    } else if (event.keyCode === 8 /* Backspace */ || event.keyCode === 46 /* Delete */) {
         if (this.selectedTreeElement.ondelete)
             handled = this.selectedTreeElement.ondelete();
     } else if (isEnterKey(event)) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to