Title: [99164] trunk/Source/WebCore
Revision
99164
Author
[email protected]
Date
2011-11-03 04:09:55 -0700 (Thu, 03 Nov 2011)

Log Message

Web Inspector: [Styles] Do not check isEditingAnyField in StylesSidebarPane._createNewRule
https://bugs.webkit.org/show_bug.cgi?id=71217

Reviewed by Yury Semikhatsky.

* inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylesSidebarPane.prototype.set _createNewRule):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (99163 => 99164)


--- trunk/Source/WebCore/ChangeLog	2011-11-03 10:37:19 UTC (rev 99163)
+++ trunk/Source/WebCore/ChangeLog	2011-11-03 11:09:55 UTC (rev 99164)
@@ -1,3 +1,13 @@
+2011-11-03  Alexander Pavlov  <[email protected]>
+
+        Web Inspector: [Styles] Do not check isEditingAnyField in StylesSidebarPane._createNewRule
+        https://bugs.webkit.org/show_bug.cgi?id=71217
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/front-end/StylesSidebarPane.js:
+        (WebInspector.StylesSidebarPane.prototype.set _createNewRule):
+
 2011-11-03  Balazs Kelemen  <[email protected]>
 
         [Qt] X11 plugins need to be reworked for Qt5

Modified: trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js (99163 => 99164)


--- trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js	2011-11-03 10:37:19 UTC (rev 99163)
+++ trunk/Source/WebCore/inspector/front-end/StylesSidebarPane.js	2011-11-03 11:09:55 UTC (rev 99164)
@@ -657,9 +657,6 @@
     _createNewRule: function(event)
     {
         event.stopPropagation();
-        if (WebInspector.isEditingAnyField())
-            return;
-
         this.expanded = true;
         this.addBlankSection().startEditingSelector();
     },
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to