Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1087)

Unified Diff: Source/devtools/front_end/components/ObjectPropertiesSection.js

Issue 1300703004: DevTools: only set title w/ shortcut via Tooltip manager API. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/components/ObjectPropertiesSection.js
diff --git a/Source/devtools/front_end/components/ObjectPropertiesSection.js b/Source/devtools/front_end/components/ObjectPropertiesSection.js
index 45e80f51e6668d6a962c878e018a2137c2c67aba..93dbcdd5977eb6c9834fd0b2d8d8ff9d3399e9e6 100644
--- a/Source/devtools/front_end/components/ObjectPropertiesSection.js
+++ b/Source/devtools/front_end/components/ObjectPropertiesSection.js
@@ -258,7 +258,7 @@ WebInspector.ObjectPropertyTreeElement.prototype = {
} else {
this.valueElement = createElementWithClass("span", "object-value-undefined");
this.valueElement.textContent = WebInspector.UIString("<unreadable>");
- WebInspector.Tooltip.install(this.valueElement, WebInspector.UIString("No property getter"));
+ this.valueElement.title = WebInspector.UIString("No property getter");
}
this.listItemElement.removeChildren();

Powered by Google App Engine
This is Rietveld 408576698