Title: [141579] trunk/Source/WebCore
- Revision
- 141579
- Author
- [email protected]
- Date
- 2013-02-01 04:23:56 -0800 (Fri, 01 Feb 2013)
Log Message
Web Inspector: Follow up to r141260: fixing renamed style.
Not reviewed.
* inspector/front-end/FilteredItemSelectionDialog.js:
(WebInspector.FilteredItemSelectionDialog.prototype._createItemElement):
(WebInspector.FilteredItemSelectionDialog.prototype._onClick):
(WebInspector.FilteredItemSelectionDialog.prototype._onMouseMove):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (141578 => 141579)
--- trunk/Source/WebCore/ChangeLog 2013-02-01 12:16:51 UTC (rev 141578)
+++ trunk/Source/WebCore/ChangeLog 2013-02-01 12:23:56 UTC (rev 141579)
@@ -1,3 +1,13 @@
+2013-02-01 Pavel Feldman <[email protected]>
+
+ Web Inspector: Follow up to r141260: fixing renamed style.
+ Not reviewed.
+
+ * inspector/front-end/FilteredItemSelectionDialog.js:
+ (WebInspector.FilteredItemSelectionDialog.prototype._createItemElement):
+ (WebInspector.FilteredItemSelectionDialog.prototype._onClick):
+ (WebInspector.FilteredItemSelectionDialog.prototype._onMouseMove):
+
2013-02-01 Alexis Menard <[email protected]>
Enable unprefixed CSS transitions by default.
Modified: trunk/Source/WebCore/inspector/front-end/FilteredItemSelectionDialog.js (141578 => 141579)
--- trunk/Source/WebCore/inspector/front-end/FilteredItemSelectionDialog.js 2013-02-01 12:16:51 UTC (rev 141578)
+++ trunk/Source/WebCore/inspector/front-end/FilteredItemSelectionDialog.js 2013-02-01 12:23:56 UTC (rev 141579)
@@ -150,7 +150,7 @@
itemElement._titleSuffixElement = itemElement.createChild("span");
itemElement._titleSuffixElement.textContent = this._delegate.itemSuffixAt(index);
itemElement._subtitleElement = itemElement.createChild("div", "filtered-item-list-dialog-subtitle");
- itemElement._subtitleElement.textContent = this._delegate.itemSubtitleAt(index);
+ itemElement._subtitleElement.textContent = this._delegate.itemSubtitleAt(index) || "\u200B";
itemElement._index = index;
var key = this._delegate.itemKeyAt(index);
@@ -285,7 +285,7 @@
_onClick: function(event)
{
- var itemElement = event.target.enclosingNodeOrSelfWithClass("item");
+ var itemElement = event.target.enclosingNodeOrSelfWithClass("filtered-item-list-dialog-item");
if (!itemElement)
return;
this._delegate.selectItem(itemElement._index, this._promptElement.value.trim());
@@ -298,7 +298,7 @@
return;
this._lastMouseX = event.pageX;
this._lastMouseY = event.pageY;
- var itemElement = event.target.enclosingNodeOrSelfWithClass("item");
+ var itemElement = event.target.enclosingNodeOrSelfWithClass("filtered-item-list-dialog-item");
if (!itemElement)
return;
this._updateSelection(itemElement._index);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes