Skip to content

Commit

Permalink
Revert of Fixed DevTools event-listener breakpoints for PointerEvents…
Browse files Browse the repository at this point in the history
…. (patchset #3 id:40001 of https://codereview.chromium.org/1915623002/ )

Reason for revert:
Reverting this, one of the tests is timing out in debug builds:

https://build.chromium.org/p/chromium.webkit/builders/WebKit%20Mac10.11%20%28dbg%29/builds/1480/steps/webkit_tests/logs/stdio

Original issue's description:
> Fixed DevTools event-listener breakpoints for PointerEvents.
>
> Also added a test with PointerEvent specific expectation, in
> the "pointerevent" virtual suite.
>
> BUG=605706
>
> Committed: https://crrev.com/2ce75f46df1069cd68a30be5a1298f21c7774f60
> Cr-Commit-Position: refs/heads/master@{#390988}

[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=605706

Review-Url: https://codereview.chromium.org/1935373002
Cr-Commit-Position: refs/heads/master@{#391113}
  • Loading branch information
dpranke authored and Commit bot committed May 3, 2016
1 parent 0af8110 commit 78782d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front_end/sources/EventListenerBreakpointsSidebarPane.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ WebInspector.EventListenerBreakpointsSidebarPane = function()
this._createCategory(WebInspector.UIString("Media"), ["play", "pause", "playing", "canplay", "canplaythrough", "seeking", "seeked", "timeupdate", "ended", "ratechange", "durationchange", "volumechange", "loadstart", "progress", "suspend", "abort", "error", "emptied", "stalled", "loadedmetadata", "loadeddata", "waiting"], false, ["audio", "video"]);
this._createCategory(WebInspector.UIString("Mouse"), ["click", "dblclick", "mousedown", "mouseup", "mouseover", "mousemove", "mouseout", "mouseenter", "mouseleave", "mousewheel", "wheel", "contextmenu"]);
this._createCategory(WebInspector.UIString("Parse"), ["setInnerHTML"], true);
this._createCategory(WebInspector.UIString("Pointer"), ["pointerover", "pointerout", "pointerenter", "pointerleave", "pointerdown", "pointerup", "pointermove", "pointercancel", "gotpointercapture", "lostpointercapture"]);
this._createCategory(WebInspector.UIString("Pointer"), ["pointerover", "pointerout", "pointerenter", "pointerleave", "pointerdown", "pointerup", "pointermove", "pointercancel", "gotpointercapture", "lostpointercapture"], true);
this._createCategory(WebInspector.UIString("Script"), ["scriptFirstStatement"], true);
this._createCategory(WebInspector.UIString("Timer"), ["setTimer", "clearTimer", "timerFired"], true);
this._createCategory(WebInspector.UIString("Touch"), ["touchstart", "touchmove", "touchend", "touchcancel"]);
Expand Down

0 comments on commit 78782d0

Please sign in to comment.