RESOLVED FIXED Bug 40799
Web Inspector: bring XHR console records back.
https://bugs.webkit.org/show_bug.cgi?id=40799
Summary Web Inspector: bring XHR console records back.
Pavel Feldman
Reported 2010-06-17 14:21:51 PDT
Here is what I plan to do: 1) make (un)monitorEvents("xhr") enable / disable monitoring 2) add "Enable XHR Monitor" / "Disable XHR Monitor" actions to the console's context menu 3) Make the chosen option persistent in the settings. Patch to follow.
Attachments
[PATCH] That I am currently compiling (still worth reviewing - what if it compiles!) (21.31 KB, patch)
2010-06-17 14:36 PDT, Pavel Feldman
no flags
[PATCH] Same with no monitorEvents("xhr") support. (18.39 KB, patch)
2010-06-18 02:26 PDT, Pavel Feldman
yurys: review+
Pavel Feldman
Comment 1 2010-06-17 14:36:01 PDT
Created attachment 59035 [details] [PATCH] That I am currently compiling (still worth reviewing - what if it compiles!)
Joseph Pecoraro
Comment 2 2010-06-17 14:51:05 PDT
(In reply to comment #0) > 2) add "Enable XHR Monitor" / "Disable XHR Monitor" actions to the console's context menu How about also adding a status bar item (always visible), or something in the scope bar (only visible in the dedicated console panel)? Looks like this could use a test!
Pavel Feldman
Comment 3 2010-06-17 14:58:00 PDT
(In reply to comment #2) > (In reply to comment #0) > > 2) add "Enable XHR Monitor" / "Disable XHR Monitor" actions to the console's context menu > > How about also adding a status bar item (always visible), or > something in the scope bar (only visible in the dedicated > console panel)? > I'd hate to see something that specific in the UI. We are doing this feature for users that really need it, but there are not too many use-cases involving it. I am also thinking of explicitly evaluating monitorEvents("xhr") in the console upon this menu action so that users could do it by hand later... > Looks like this could use a test! Lets agree on landing it first. And... I am not accepting requests like this from you since you've been way more lazy on test coverage than me lately :P
Pavel Feldman
Comment 4 2010-06-18 02:26:35 PDT
Created attachment 59088 [details] [PATCH] Same with no monitorEvents("xhr") support.
Yury Semikhatsky
Comment 5 2010-06-18 03:24:39 PDT
Comment on attachment 59088 [details] [PATCH] Same with no monitorEvents("xhr") support. WebCore/inspector/InspectorController.cpp:1109 + m_monitoringXHR = true; Maybe just m_monitoringXHR = (monitoringXHR == "true") ?
Pavel Feldman
Comment 6 2010-06-18 05:27:46 PDT
Committing to http://svn.webkit.org/repository/webkit/trunk ... M WebCore/ChangeLog M WebCore/English.lproj/localizedStrings.js M WebCore/inspector/InspectorBackend.cpp M WebCore/inspector/InspectorBackend.h M WebCore/inspector/InspectorBackend.idl M WebCore/inspector/InspectorController.cpp M WebCore/inspector/InspectorController.h M WebCore/inspector/InspectorFrontend.cpp M WebCore/inspector/InspectorFrontend.h M WebCore/inspector/front-end/ConsoleView.js M WebCore/inspector/front-end/InspectorBackendStub.js M WebCore/inspector/front-end/inspector.js M WebCore/xml/XMLHttpRequest.cpp M WebKit/chromium/ChangeLog M WebKit/chromium/src/js/InspectorControllerImpl.js Committed r61397
Note You need to log in before you can comment on or make changes to this bug.