Skip to content

Commit a652569

Browse files
alexkozyCommit bot
authored and
Commit bot
committed
Revert of Change Event.deepPath to a method (patchset #3 id:40001 of https://codereview.chromium.org/1637813002/ )
Reason for revert: This breaks new DevTools frontend while remote debugging old backends. Original issue's description: > Change Event.deepPath to a method > > In order to make clear that computation is performed, Event.deepPath has been changed to a method Event.deepPath(), that returns sequence<EventTarget>. > See the discussion here: WICG/webcomponents#361 > Described in the spec here : http://w3c.github.io/webcomponents/spec/shadow/#widl-Event-deepPath-sequence-EventTarget > See the spec change here: WICG/webcomponents@ed93413 > BUG=531990 > > Committed: https://crrev.com/b9279be7d61887c171d5c1cefa114292c84b9957 > Cr-Commit-Position: refs/heads/master@{#372596} [email protected],[email protected],[email protected],[email protected],[email protected] # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=531990 Review URL: https://codereview.chromium.org/1651193003 Cr-Commit-Position: refs/heads/master@{#372713}
1 parent 6c0bf8d commit a652569

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

front_end/ui/Tooltip.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ WebInspector.Tooltip.prototype = {
3333
*/
3434
_mouseMove: function(event)
3535
{
36-
var path = event.deepPath() ? event.deepPath() : event.path;
36+
var path = event.deepPath ? event.deepPath : event.path;
3737
if (!path || event.buttons !== 0)
3838
return;
3939

0 commit comments

Comments
 (0)