Title: [86674] trunk/Source/WebCore
- Revision
- 86674
- Author
- [email protected]
- Date
- 2011-05-17 09:24:53 -0700 (Tue, 17 May 2011)
Log Message
2011-05-17 Alexander Pavlov <[email protected]>
Reviewed by Yury Semikhatsky.
Web Inspector: Enter/Tab after editing a CSS property does not invoke editor on next field
https://bugs.webkit.org/show_bug.cgi?id=60962
* inspector/front-end/ElementsPanel.js:
(WebInspector.ElementsPanel.prototype.updateStyles):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (86673 => 86674)
--- trunk/Source/WebCore/ChangeLog 2011-05-17 16:03:18 UTC (rev 86673)
+++ trunk/Source/WebCore/ChangeLog 2011-05-17 16:24:53 UTC (rev 86674)
@@ -1,3 +1,13 @@
+2011-05-17 Alexander Pavlov <[email protected]>
+
+ Reviewed by Yury Semikhatsky.
+
+ Web Inspector: Enter/Tab after editing a CSS property does not invoke editor on next field
+ https://bugs.webkit.org/show_bug.cgi?id=60962
+
+ * inspector/front-end/ElementsPanel.js:
+ (WebInspector.ElementsPanel.prototype.updateStyles):
+
2011-05-17 Sheriff Bot <[email protected]>
Unreviewed, rolling out r86660.
Modified: trunk/Source/WebCore/inspector/front-end/ElementsPanel.js (86673 => 86674)
--- trunk/Source/WebCore/inspector/front-end/ElementsPanel.js 2011-05-17 16:03:18 UTC (rev 86673)
+++ trunk/Source/WebCore/inspector/front-end/ElementsPanel.js 2011-05-17 16:24:53 UTC (rev 86674)
@@ -1008,7 +1008,7 @@
{
var stylesSidebarPane = this.sidebarPanes.styles;
var computedStylePane = this.sidebarPanes.computedStyle;
- if ((!stylesSidebarPane.expanded && !computedStylePane.expanded) || !stylesSidebarPane.needsUpdate)
+ if ((!stylesSidebarPane.expanded && !computedStylePane.expanded) || !stylesSidebarPane.needsUpdate || this._isEditingStyle)
return;
stylesSidebarPane.update(this.focusedDOMNode, null, forceUpdate);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes