Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js |
index 3163b9a199aff762507a2a17fdb87769fc7122ed..6c2a42674d6cd3977dbf3d20008309755f7b5d28 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js |
+++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js |
@@ -691,6 +691,8 @@ WebInspector.FlameChart.prototype = { |
var inDividersBar = event.offsetY < WebInspector.FlameChart.DividersBarHeight; |
this._highlightedMarkerIndex = inDividersBar ? this._markerIndexAtPosition(event.offsetX) : -1; |
this._updateMarkerHighlight(); |
+ this._entryInfo.style.left = event.offsetX + "px"; |
+ this._entryInfo.style.top = event.offsetY + "px"; |
this._highlightEntry(this._coordinatesToEntryIndex(event.offsetX, event.offsetY)); |
}, |