RESOLVED FIXED 176824
Web Inspector: Timeline should show when events preventDefault() was called on an event or not
https://bugs.webkit.org/show_bug.cgi?id=176824
Summary Web Inspector: Timeline should show when events preventDefault() was called o...
Joseph Pecoraro
Reported 2017-09-12 21:34:42 PDT
Timeline should show when events preventDefault() was called on an event or not * Test <button id="b1">Default Not Prevent</button> <button id="b2">Default Prevented</button> <button onclick="sleep(); return false">Default Prevented Two</button> <script> function sleep() { let now = Date.now(); while ((Date.now() - now) < 100); } document.getElementById("b1").addEventListener("click", (event) => { sleep(); }); document.getElementById("b2").addEventListener("click", (event) => { sleep(); event.preventDefault(); }); </script> * Steps to reproduce: 1. Inspect test page 2. Start a timeline 3. Click each button 4. Stop recording => Should see which events had default prevented
Attachments
[PATCH] Proposed Fix - Lacking Tests (20.36 KB, patch)
2017-09-12 21:40 PDT, Joseph Pecoraro
no flags
[IMAGE] Event Display (124.83 KB, image/png)
2017-09-12 21:40 PDT, Joseph Pecoraro
no flags
[PATCH] Proposed Fix (58.77 KB, patch)
2017-09-13 15:26 PDT, Joseph Pecoraro
no flags
[PATCH] Proposed Fix (58.75 KB, patch)
2017-09-13 15:29 PDT, Joseph Pecoraro
no flags
[PATCH] For Landing (58.71 KB, patch)
2017-09-13 21:07 PDT, Joseph Pecoraro
no flags
[PATCH] For Landing (33.47 KB, patch)
2017-09-14 10:52 PDT, Joseph Pecoraro
no flags
Patch (55.44 KB, patch)
2019-03-17 20:57 PDT, Devin Rousso
no flags
Patch (55.41 KB, patch)
2019-03-20 13:34 PDT, Devin Rousso
no flags
Joseph Pecoraro
Comment 1 2017-09-12 21:34:53 PDT
Joseph Pecoraro
Comment 2 2017-09-12 21:40:15 PDT
Created attachment 320617 [details] [PATCH] Proposed Fix - Lacking Tests
Joseph Pecoraro
Comment 3 2017-09-12 21:40:43 PDT
Created attachment 320618 [details] [IMAGE] Event Display
Simon Fraser (smfr)
Comment 4 2017-09-13 10:58:37 PDT
Noice. No spaces around em dash tho.
Joseph Pecoraro
Comment 5 2017-09-13 11:24:45 PDT
(In reply to Simon Fraser (smfr) from comment #4) > Noice. No spaces around em dash tho. I'm use the default styles for subtitles in tree elements. For example Resources has the same styles for "Name – domain".
Joseph Pecoraro
Comment 6 2017-09-13 15:14:57 PDT
Comment on attachment 320617 [details] [PATCH] Proposed Fix - Lacking Tests I'll shortly include a patch with tests.
Joseph Pecoraro
Comment 7 2017-09-13 15:26:59 PDT
Created attachment 320696 [details] [PATCH] Proposed Fix Now with tests!
Joseph Pecoraro
Comment 8 2017-09-13 15:27:50 PDT
Comment on attachment 320696 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=320696&action=review > LayoutTests/inspector/timeline/resources/timeline-event-utilities.js:21 > +function finishRecording(data = undefined) { I suppose at this point the = undefined is redundant.
Joseph Pecoraro
Comment 9 2017-09-13 15:29:16 PDT
Created attachment 320697 [details] [PATCH] Proposed Fix
Devin Rousso
Comment 10 2017-09-13 15:52:12 PDT
Comment on attachment 320697 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=320697&action=review r=me > LayoutTests/inspector/timeline/resources/timeline-event-utilities.js:8 > + InspectorTest.log("Starting Capture..."); > + const newRecording = true; Style: I'd add a newline. > LayoutTests/inspector/timeline/resources/timeline-event-utilities.js:10 > + InspectorTest.evaluateInPage(expression); I would prefer you call this after adding the listener. > LayoutTests/inspector/timeline/timeline-event-EventDispatch.html:16 > + button.dispatchEvent(new MouseEvent("click", {bubbles: true, cancelable: true})); Can you just call `button.click();`? > LayoutTests/inspector/timeline/timeline-event-EventDispatch.html:21 > + button.dispatchEvent(new MouseEvent("click", {bubbles: true, cancelable: true})); Ditto. > LayoutTests/inspector/timeline/timeline-event-TimerFire.html:20 > + clearTimeout(setIntervalIdentifier); NIT: for consistency, I think `clearInterval(setIntervalIdentifier);` is preferred. > LayoutTests/inspector/timeline/timeline-event-TimerInstall.html:20 > + clearTimeout(setIntervalIdentifier); Ditto > LayoutTests/inspector/timeline/timeline-event-TimerRemove.html:19 > + clearTimeout(setIntervalIdentifier); Ditto > LayoutTests/inspector/timeline/timeline-event-TimerRemove.html:71 > + name: "SanityCheck", lol > Source/WebInspectorUI/UserInterface/Test/Test.js:42 > + InspectorBackend.registerDOMDispatcher(new WI.DOMObserver); Why did this move?
Joseph Pecoraro
Comment 11 2017-09-13 16:42:43 PDT
Comment on attachment 320697 [details] [PATCH] Proposed Fix View in context: https://bugs.webkit.org/attachment.cgi?id=320697&action=review >> LayoutTests/inspector/timeline/resources/timeline-event-utilities.js:10 >> + InspectorTest.evaluateInPage(expression); > > I would prefer you call this after adding the listener. I mostly find that approach harder to read. In practice these commands trigger async operations and are serial and so the events below cannot happen before. So I like to write it this way to logically group things. If we somehow rewrote tests to use a synchronous backend we'd encounter all kinds of issues. >> LayoutTests/inspector/timeline/timeline-event-TimerFire.html:20 >> + clearTimeout(setIntervalIdentifier); > > NIT: for consistency, I think `clearInterval(setIntervalIdentifier);` is preferred. Hah, I can't believe I totally forgot about `clearInterval`. Done! >> Source/WebInspectorUI/UserInterface/Test/Test.js:42 >> + InspectorBackend.registerDOMDispatcher(new WI.DOMObserver); > > Why did this move? To match the order of operations in Main.js. It isn't important, just consistency.
Joseph Pecoraro
Comment 12 2017-09-13 21:07:41 PDT
Created attachment 320724 [details] [PATCH] For Landing
WebKit Commit Bot
Comment 13 2017-09-14 00:57:50 PDT
Comment on attachment 320724 [details] [PATCH] For Landing Clearing flags on attachment: 320724 Committed r222015: <http://trac.webkit.org/changeset/222015>
Ryan Haddad
Comment 14 2017-09-14 09:37:33 PDT
(In reply to WebKit Commit Bot from comment #13) > Comment on attachment 320724 [details] > [PATCH] For Landing > > Clearing flags on attachment: 320724 > > Committed r222015: <http://trac.webkit.org/changeset/222015> Three of the tests added with this change are failing on macOS Debug WK1 bots: inspector/timeline/timeline-event-FireAnimationFrame.html inspector/timeline/timeline-event-TimerFire.html inspector/timeline/timeline-event-TimerRemove.html https://build.webkit.org/results/Apple%20Sierra%20Debug%20WK1%20(Tests)/r222016%20(3594)/results.html
Ryan Haddad
Comment 16 2017-09-14 10:17:19 PDT
Reverted r222015 for reason: The LayoutTests added with this change are flaky. Committed r222030: <http://trac.webkit.org/changeset/222030>
Joseph Pecoraro
Comment 17 2017-09-14 10:49:49 PDT
Okay, I will avoid adding the Timer tests to this patch (they are kind of unrelated anyways) and investigate them separately. It doesn't appear the EventDispatch test was flakey like the timer ones.
Joseph Pecoraro
Comment 18 2017-09-14 10:52:29 PDT
Created attachment 320789 [details] [PATCH] For Landing
WebKit Commit Bot
Comment 19 2017-09-14 11:09:12 PDT
Comment on attachment 320789 [details] [PATCH] For Landing Clearing flags on attachment: 320789 Committed r222036: <http://trac.webkit.org/changeset/222036>
Joseph Pecoraro
Comment 21 2017-09-14 16:51:16 PDT
Rolled out in: https://trac.webkit.org/changeset/222064/webkit It appears we have an existing bug in Timelines, that will have to be hunted down in order to test this. Likewise it may be more common in Debug, since running this test 50 times in release didn't exhibit any issue on my machines before I submitted it.
Devin Rousso
Comment 22 2019-03-17 20:57:54 PDT
WebKit Commit Bot
Comment 23 2019-03-20 12:53:30 PDT Comment hidden (obsolete)
Devin Rousso
Comment 24 2019-03-20 13:34:21 PDT
Simon Fraser (smfr)
Comment 25 2019-03-20 17:20:40 PDT
Nice!
WebKit Commit Bot
Comment 26 2019-03-20 17:55:45 PDT
Comment on attachment 365390 [details] Patch Clearing flags on attachment: 365390 Committed r243269: <https://trac.webkit.org/changeset/243269>
WebKit Commit Bot
Comment 27 2019-03-20 17:55:48 PDT
All reviewed patches have been landed. Closing bug.
Truitt Savell
Comment 28 2019-03-21 10:15:17 PDT
Looks like all of the tests added in https://trac.webkit.org/changeset/243269/webkit are flaky: inspector/timeline/timeline-event-CancelAnimationFrame.html inspector/timeline/timeline-event-EventDispatch.html inspector/timeline/timeline-event-FireAnimationFrame.html inspector/timeline/timeline-event-RequestAnimationFrame.html inspector/timeline/timeline-event-TimerFire.html inspector/timeline/timeline-event-TimerInstall.html inspector/timeline/timeline-event-TimerRemove.html Combined History: https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard.html#showAllRuns=true&tests=inspector%2Ftimeline%2Ftimeline-event-CancelAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event-EventDispatch.html%20inspector%2Ftimeline%2Ftimeline-event-FireAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event-RequestAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event-TimerFire.html%20inspector%2Ftimeline%2Ftimeline-event-TimerInstall.html%20inspector%2Ftimeline%2Ftimeline-event-TimerRemove.html
Truitt Savell
Comment 29 2019-03-21 10:18:00 PDT
Devin Rousso
Comment 30 2019-03-21 10:47:46 PDT
(In reply to Truitt Savell from comment #28) > Looks like all of the tests added in > https://trac.webkit.org/changeset/243269/webkit > > are flaky: > inspector/timeline/timeline-event-CancelAnimationFrame.html > inspector/timeline/timeline-event-EventDispatch.html > inspector/timeline/timeline-event-FireAnimationFrame.html > inspector/timeline/timeline-event-RequestAnimationFrame.html > inspector/timeline/timeline-event-TimerFire.html > inspector/timeline/timeline-event-TimerInstall.html > inspector/timeline/timeline-event-TimerRemove.html > > Combined History: > https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard. > html#showAllRuns=true&tests=inspector%2Ftimeline%2Ftimeline-event- > CancelAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event- > EventDispatch.html%20inspector%2Ftimeline%2Ftimeline-event- > FireAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event- > RequestAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event-TimerFire. > html%20inspector%2Ftimeline%2Ftimeline-event-TimerInstall. > html%20inspector%2Ftimeline%2Ftimeline-event-TimerRemove.html (In reply to Truitt Savell from comment #29) > Looks like this also broke inspector/timeline/line-column.html again. > > History: > https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard. > html#showAllRuns=true&tests=inspector%2Ftimeline%2Fline-column.html (╯°□°)╯︵ ┻━┻
Devin Rousso
Comment 31 2019-03-21 12:56:29 PDT
(In reply to Truitt Savell from comment #29) > Looks like this also broke inspector/timeline/line-column.html again. > > History: > https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard. > html#showAllRuns=true&tests=inspector%2Ftimeline%2Fline-column.html Fixed in r243317 <https://trac.webkit.org/changeset/243317>. Still investigating the other failures.
Devin Rousso
Comment 32 2019-03-22 16:35:59 PDT
(In reply to Truitt Savell from comment #28) > Looks like all of the tests added in > https://trac.webkit.org/changeset/243269/webkit > > are flaky: > inspector/timeline/timeline-event-CancelAnimationFrame.html > inspector/timeline/timeline-event-EventDispatch.html > inspector/timeline/timeline-event-FireAnimationFrame.html > inspector/timeline/timeline-event-RequestAnimationFrame.html > inspector/timeline/timeline-event-TimerFire.html > inspector/timeline/timeline-event-TimerInstall.html > inspector/timeline/timeline-event-TimerRemove.html > > Combined History: > https://webkit-test-results.webkit.org/dashboards/flakiness_dashboard. > html#showAllRuns=true&tests=inspector%2Ftimeline%2Ftimeline-event- > CancelAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event- > EventDispatch.html%20inspector%2Ftimeline%2Ftimeline-event- > FireAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event- > RequestAnimationFrame.html%20inspector%2Ftimeline%2Ftimeline-event-TimerFire. > html%20inspector%2Ftimeline%2Ftimeline-event-TimerInstall. > html%20inspector%2Ftimeline%2Ftimeline-event-TimerRemove.html Fixed in r243405 <http://trac.webkit.org/changeset/243405>.
Note You need to log in before you can comment on or make changes to this bug.