Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/ui/Tooltip.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/Tooltip.js b/third_party/WebKit/Source/devtools/front_end/ui/Tooltip.js |
| index 26e24423a63e3c3eab04efd235d0d79c2bb0c647..9dd3547b60d430727cb53bc4ce7a9f0a5b06c193 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/ui/Tooltip.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/Tooltip.js |
| @@ -33,7 +33,7 @@ WebInspector.Tooltip.prototype = { |
| */ |
| _mouseMove: function(event) |
| { |
| - var path = event.path; |
| + var path = event.deepPath() ? event.deepPath() : event.path; |
|
samli
2016/02/18 22:48:29
Remove this change please.
yuzuchan
2016/02/19 03:00:24
Done.
|
| if (!path || event.buttons !== 0) |
| return; |