{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":31406747,"defaultBranch":"main","name":"devtools-frontend","ownerLogin":"ChromeDevTools","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2015-02-27T06:32:33.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/11260967?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1726542207.0","currentOid":""},"activityList":{"items":[{"before":"2f5365bd82826019728778e3ba15cacd4c0bc2e1","after":"ac75b3a584d5e510a0a866eb487f1e3de820a741","ref":"refs/heads/main","pushedAt":"2024-09-18T01:13:22.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"RPP: Show additional details for Animations\n\nThe UI showed no details for purple Animation events, despite plenty\nin the trace events. This CL shows the user:\n\n1) The \"displayName\" of the animation (the css property or CSS animation name). This is also added to the tooltip.\n2) The associated DOM node.\n - If the node isn't resolved, a fallback nodeName text is used.\n3) If the animation couldn't be composited, the reasons why are shared.\n - If it's because of a css property, the offending properties are listed.\n\nhttps://screenshot.googleplex.com/4dBe452m35a697V\n\nChange-Id: I45bee62a42f3bed4273b4a582f063b845b50aa29\nBug: 41006273\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5863051\nAuto-Submit: Paul Irish \nReviewed-by: Adriana Ixba \nReviewed-by: Adam Raine \nCommit-Queue: Paul Irish ","shortMessageHtmlLink":"RPP: Show additional details for Animations"}},{"before":"42a9472d61980f96a2670cf74c92a441255f850b","after":"2f5365bd82826019728778e3ba15cacd4c0bc2e1","ref":"refs/heads/main","pushedAt":"2024-09-18T01:12:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Remove checkbox for removed CWV HUD\n\nBug:328487897\nChange-Id: I79eeb58e0153146f8c46f6a342c0f6ea8246f7c7\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5870911\nReviewed-by: Adam Raine \nCommit-Queue: Paul Irish ","shortMessageHtmlLink":"Remove checkbox for removed CWV HUD"}},{"before":"f3c2317dd5bcd2097389653a34480f0053bac056","after":"42a9472d61980f96a2670cf74c92a441255f850b","ref":"refs/heads/main","pushedAt":"2024-09-18T00:07:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[RPP] Update strings for ThirdParties insight component\n\nBug: 352244718\nChange-Id: I0bd4ec8848b146983f46ebb58c59aa52d636a3a1\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5870724\nCommit-Queue: Connor Clark \nReviewed-by: Paul Irish ","shortMessageHtmlLink":"[RPP] Update strings for ThirdParties insight component"}},{"before":"3b39d351ce9cb48ad37118a6a65b16b694a957ce","after":"f3c2317dd5bcd2097389653a34480f0053bac056","ref":"refs/heads/main","pushedAt":"2024-09-17T19:02:43.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"AIDA Client support aborting request\n\nRefactor the abort mechanism to work on the AIDA client directly,\nthat way we can stop the generators as we need, without needing to\nwait for the response to complete or workaround in other ways.\n\nBug: none\nChange-Id: I00b71501be02a94788ec208a128203d40a259ead\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5868022\nReviewed-by: Alex Rudenko \nCommit-Queue: Nikolay Vitkov ","shortMessageHtmlLink":"AIDA Client support aborting request"}},{"before":"45fec2d03e40e5a38d5714acc48fbcb2f70aae2f","after":"3b39d351ce9cb48ad37118a6a65b16b694a957ce","ref":"refs/heads/main","pushedAt":"2024-09-17T16:17:40.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[RPP] Refactor insights to work w/o a navigation\n\nMinimal user-facing changes (so far).\n\nThis is a significant refactor to how insights are created in the Trace\nEngine's Processor. Rather than only considering the bounds of each\nnavigation, now in addition the beginning of the trace up to the first\nnavigation is analyzed by the Processor for insights.\n\n* NavigationInsightContext is now BoundedInsightContext, which is a\n discriminated union of a context with a navigation, and one without.\n Each insight checks the context to know how to proceed. Further\n refactors are needed for each insight, so currently most of them\n just return nothing if the context has no navigation.\n* Because there is some amount of time between the start of the trace\n and the first navigation (even for a \"Reload and Record\" action), if\n there is a navigation within the first 1000ms then the start of the\n trace will be processed as part of the first navigation insight set.\n I typically saw 5ms when using \"Reload and Record\". This is expected\n to receive further refinement once we get some experience with this\n change. See go/cpq:insights-without-navs for reasoning.\n* Adds InsightHelpers.ts, and added some useful utility functions: like\n getNext/getNextOrError, because the previous code resulted in `any`\n and that made this refactor more difficult.\n* No user-facing changes, except that now the ThirdPartyWeb insight\n correctly segments the data it reports using the new context.window.\n The insights panel still does not show insights for parts of the trace\n without a navigation.\n\nBug: 366049346\nChange-Id: Ibb708a2dd985d1a3a2f27435770379a59d1d0b2b\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5856051\nCommit-Queue: Connor Clark \nReviewed-by: Paul Irish ","shortMessageHtmlLink":"[RPP] Refactor insights to work w/o a navigation"}},{"before":"7ab6d51f7a4570d30841cb5afd3958fee0a986bf","after":"45fec2d03e40e5a38d5714acc48fbcb2f70aae2f","ref":"refs/heads/main","pushedAt":"2024-09-17T15:38:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Change 'Security' name to 'Securtity & Privacy' if feature is enabled\n\nCorresponding Chromium CL: https://crrev.com/c/5867918\n\nFlag enabled: https://screenshot.googleplex.com/8M3bCiJgpgATAa3.png\nFlag disabled: https://screenshot.googleplex.com/8T969gqtxXWRN6m.png\n\nBug: 365737493\nChange-Id: Ia69cdc2623b2ff18c6532d194c8ed4d84567805f\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5867655\nReviewed-by: Shuran Huang \nReviewed-by: Danil Somsikov \nCommit-Queue: Joshua Thomas ","shortMessageHtmlLink":"Change 'Security' name to 'Securtity & Privacy' if feature is enabled"}},{"before":"87ebd986f14ff52887d1a1e29f51e0110658c8d5","after":"7ab6d51f7a4570d30841cb5afd3958fee0a986bf","ref":"refs/heads/main","pushedAt":"2024-09-17T14:55:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Fix padding of MarkdownView bullet points\n\nFixed: b/367339255\nChange-Id: If48cf99864383d14af75481e4662d7e809094d6b\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5868253\nAuto-Submit: Wolfgang Beyer \nCommit-Queue: Ergün Erdoğmuş \nCommit-Queue: Wolfgang Beyer \nReviewed-by: Ergün Erdoğmuş ","shortMessageHtmlLink":"Fix padding of MarkdownView bullet points"}},{"before":"cf05ab915f1ee5d162722cff0dfa0aedd986fd70","after":"87ebd986f14ff52887d1a1e29f51e0110658c8d5","ref":"refs/heads/main","pushedAt":"2024-09-17T14:52:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Enable GenAI Settings panel experiment by default and migrate settings\n\n- Enables GenAI settings panel by default\n- This also enables redesigned console insights consent flow\n- The `console-insights-enabled` setting is now false by default\n- Settings are migrated, such that onboarded users stay onboarded\n\nBug: b/350668580\nChange-Id: I68e29b49124174a275a2b14f692de6b2403f867a\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5867831\nCommit-Queue: Wolfgang Beyer \nReviewed-by: Alex Rudenko ","shortMessageHtmlLink":"Enable GenAI Settings panel experiment by default and migrate settings"}},{"before":"af90e08a26b848636fb7518c3517e303a580462b","after":"cf05ab915f1ee5d162722cff0dfa0aedd986fd70","ref":"refs/heads/main","pushedAt":"2024-09-17T14:47:52.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Freestyler] Refactor element query\n\nBug: none\nChange-Id: I29c84958f36475bbd51b70e13f792337d0ad3105\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5866949\nReviewed-by: Ergün Erdoğmuş \nCommit-Queue: Nikolay Vitkov \nAuto-Submit: Nikolay Vitkov \nCommit-Queue: Ergün Erdoğmuş ","shortMessageHtmlLink":"[Freestyler] Refactor element query"}},{"before":"9de4a36055c2a73d6350102f54f3ba328f86ed42","after":"af90e08a26b848636fb7518c3517e303a580462b","ref":"refs/heads/main","pushedAt":"2024-09-17T14:34:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"RPP: allow the user to cancel creating an entry link\n\nAdds the ability for the user to press Escape or a single right click\nwith their mouse to cancel the pending creation and reset.\n\nFixed: 364856818\nChange-Id: I1473a62aff6678a4f5437467bb48f6522dbf72f0\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865672\nAuto-Submit: Jack Franklin \nReviewed-by: Alina Varkki \nCommit-Queue: Alina Varkki ","shortMessageHtmlLink":"RPP: allow the user to cancel creating an entry link"}},{"before":"f1c596c88807467d1374ecab3c449273061ca575","after":"9de4a36055c2a73d6350102f54f3ba328f86ed42","ref":"refs/heads/main","pushedAt":"2024-09-17T14:32:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[AI Settings] Fix header wrapping behavior\n\nOnly has an effect for ridiculously narrow widths\n\nBug: b/350668580\nChange-Id: Ifb27a19a9d6f3aa715577aee019bbc18e622348f\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865675\nAuto-Submit: Wolfgang Beyer \nReviewed-by: Ergün Erdoğmuş \nCommit-Queue: Ergün Erdoğmuş ","shortMessageHtmlLink":"[AI Settings] Fix header wrapping behavior"}},{"before":"3fe75db00dfbd8e07bef97542a483fed4d7d12e7","after":"f1c596c88807467d1374ecab3c449273061ca575","ref":"refs/heads/main","pushedAt":"2024-09-17T14:02:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Freestyler] Extract title into a separate response\n\nIt's possible we get only a title and action without a thought,\nso we want to send it separably as well.\n\nBug: none\nChange-Id: I370a982d815a02f7ee8c5c86d22f53de13d7a37c\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865381\nReviewed-by: Ergün Erdoğmuş \nCommit-Queue: Nikolay Vitkov ","shortMessageHtmlLink":"[Freestyler] Extract title into a separate response"}},{"before":"3bc3501f308aba665425e2eca09aa5b197355f08","after":"3fe75db00dfbd8e07bef97542a483fed4d7d12e7","ref":"refs/heads/main","pushedAt":"2024-09-17T13:37:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[GM3Restyling] Change selected item colors for navigation trees\n\nWhen an item in the navigation tree is selected, it behaves differently depending on light/dark mode:\n\nLight mode: don't change icon and text coloring on select.\nDark mode: change the icon and text coloring on select.\n\nBefore: https://i.imgur.com/d0AZdeM.png\nAfter: https://i.imgur.com/Vtcwtse.png\nBug: 5769258\nChange-Id: I0f6c0c57f2311feb174eee35bc472b96f29d7696\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5869832\nCommit-Queue: Kateryna Prokopenko \nReviewed-by: Kateryna Prokopenko \nAuto-Submit: Kim-Anh Tran ","shortMessageHtmlLink":"[GM3Restyling] Change selected item colors for navigation trees"}},{"before":"dc878480382e3a0ef91ec1622d37b43abc1af4aa","after":"3bc3501f308aba665425e2eca09aa5b197355f08","ref":"refs/heads/main","pushedAt":"2024-09-17T13:06:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Roll browser-protocol\n\nThis roll requires a manual review. See http://go/reviewed-rolls for guidance.\n\nIn case of failures or errors, reach out to someone from config/owner/COMMON_OWNERS.\n\nRoll created at https://cr-buildbucket.appspot.com/build/8736549230357568145\n\nR=devtools-waterfall-sheriff-onduty@rotations.google.com\n\nBug: none\nChange-Id: I29de9a8a2e4c70ff9438ba549a4f9309f09cb28f\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5868533\nCommit-Queue: Devtools Autoroller \nReviewed-by: Wolfgang Beyer \nCommit-Queue: Wolfgang Beyer \nBot-Commit: Devtools Autoroller ","shortMessageHtmlLink":"Roll browser-protocol"}},{"before":"028bb21250b3d95892efd7f6acaa3389bf105b61","after":"dc878480382e3a0ef91ec1622d37b43abc1af4aa","ref":"refs/heads/main","pushedAt":"2024-09-17T12:44:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Update DevTools DEPS (trusted)\n\nRolling third_party/depot_tools: https://chromium.googlesource.com/chromium/tools/depot_tools/+log/c5df152..6e9a3df\n\nRoll created at https://cr-buildbucket.appspot.com/build/8736549230357568145\n\nBug: none\nChange-Id: I25bafab162870ac69c9270f048c601043f6c19a8\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5867072\nBot-Commit: Devtools Autoroller \nCommit-Queue: Devtools Autoroller ","shortMessageHtmlLink":"Update DevTools DEPS (trusted)"}},{"before":"2ea505babb8bb71eb611755868a86509357208dc","after":"028bb21250b3d95892efd7f6acaa3389bf105b61","ref":"refs/heads/main","pushedAt":"2024-09-17T08:43:43.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Roll puppeteer-core\n\nThis roll requires a manual review. See http://go/reviewed-rolls for guidance.\n\nIn case of failures or errors, reach out to someone from config/owner/RECORDER_OWNERS.\n\nRoll created at https://cr-buildbucket.appspot.com/build/8736583207515725361\n\nR=devtools-waterfall-sheriff-onduty@rotations.google.com\n\nBug: none\nChange-Id: Iab1d19b358200e7c884c03af7989eae658cacb2a\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5868152\nCommit-Queue: Alex Rudenko \nReviewed-by: Wolfgang Beyer \nReviewed-by: Alex Rudenko ","shortMessageHtmlLink":"Roll puppeteer-core"}},{"before":"e3d3b07266c22eff7231e170729c0bb50687ba82","after":"2ea505babb8bb71eb611755868a86509357208dc","ref":"refs/heads/main","pushedAt":"2024-09-17T08:39:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[GM3Restyling] Treeoutline Navigator Tree UI updates\n\nThis CL makes updates to the UI after feedback from UX:\n* removes the ripple effect\n* adjusts the padding\n* adjusts the select colors are only shown if the tree item is focused\n* applies opacity for ignore listed files only on title and\n icons\n\nBug: 5769258\nChange-Id: Ided6d5874740b69c1703b6bdb89f440381b6609c\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5868231\nCommit-Queue: Kateryna Prokopenko \nAuto-Submit: Kim-Anh Tran \nReviewed-by: Kateryna Prokopenko ","shortMessageHtmlLink":"[GM3Restyling] Treeoutline Navigator Tree UI updates"}},{"before":"5f9df160904e1942cda474f3abafb93d7b2689c2","after":"e3d3b07266c22eff7231e170729c0bb50687ba82","ref":"refs/heads/main","pushedAt":"2024-09-17T08:36:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Roll browser-protocol\n\nThis roll requires a manual review. See http://go/reviewed-rolls for guidance.\n\nIn case of failures or errors, reach out to someone from config/owner/COMMON_OWNERS.\n\nRoll created at https://cr-buildbucket.appspot.com/build/8736583207515725361\n\nR=devtools-waterfall-sheriff-onduty@rotations.google.com\n\nBug: none\nChange-Id: I0622d6494c22488b72be2765704065b51f7bdeb7\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5868153\nBot-Commit: Devtools Autoroller \nCommit-Queue: Wolfgang Beyer \nReviewed-by: Wolfgang Beyer ","shortMessageHtmlLink":"Roll browser-protocol"}},{"before":"13d3b41ec4b9953d09eb70dac1c3ceda108a6016","after":"5f9df160904e1942cda474f3abafb93d7b2689c2","ref":"refs/heads/main","pushedAt":"2024-09-17T06:59:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Freestyler] Remove `setElementStyles` related consideration\n\nIt causes the agent to not use `setElementStyles` in some cases\n\nBug: 367258735\nChange-Id: Ie45d9e46904f3fd2f7473cb4bccbab9439dcbaf5\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865673\nReviewed-by: Alex Rudenko \nAuto-Submit: Ergün Erdoğmuş \nCommit-Queue: Alex Rudenko ","shortMessageHtmlLink":"[Freestyler] Remove setElementStyles related consideration"}},{"before":"4ad151291b05f890300e7af0c788213805f2207b","after":"13d3b41ec4b9953d09eb70dac1c3ceda108a6016","ref":"refs/heads/main","pushedAt":"2024-09-17T03:33:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Update DevTools DEPS (trusted)\n\nRolling build: https://chromium.googlesource.com/chromium/src/build/+log/4bd8773..d26b9fe\n\nRolling buildtools: https://chromium.googlesource.com/chromium/src/buildtools/+log/a7a84ac..8130925\n\nRolling third_party/depot_tools: https://chromium.googlesource.com/chromium/tools/depot_tools/+log/22df6f8..c5df152\n\nRoll created at https://cr-buildbucket.appspot.com/build/8736583207515725361\n\nBug: none\nChange-Id: I75927d0fa43f0c570a13695326e21f0e7130c919\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5867933\nBot-Commit: Devtools Autoroller \nCommit-Queue: Devtools Autoroller ","shortMessageHtmlLink":"Update DevTools DEPS (trusted)"}},{"before":null,"after":"73cf86044cd2b6f004225b04e010e6bccb31d173","ref":"refs/heads/chromium/6723","pushedAt":"2024-09-17T03:03:27.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Fix position-anchor links for new anchor()/anchor-size() syntax\n\nThe arguments can be re-ordered and anchor-size() direction fully\nomitted.\n\nThis also fixes the issue of fallback values not being rendered.\n\nBug: 343516786, 365802559\nChange-Id: I09a53ea8b7c81def3d76551157f03d05be0d3a08\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5853472\nCommit-Queue: Rune Lillesveen \nReviewed-by: Philip Pfaffe \nReviewed-by: Changhao Han ","shortMessageHtmlLink":"Fix position-anchor links for new anchor()/anchor-size() syntax"}},{"before":"c0975840df76da4f08bbd7b7b22be2afecd07113","after":"4ad151291b05f890300e7af0c788213805f2207b","ref":"refs/heads/main","pushedAt":"2024-09-16T19:06:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Mark TraceEventParseMetaViewport frame as optional\n\nBug: 351757418\nChange-Id: Iee9d5ba3994055c3b1cf20ce9c610587517bb836\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5867013\nReviewed-by: Adam Raine \nCommit-Queue: Connor Clark ","shortMessageHtmlLink":"Mark TraceEventParseMetaViewport frame as optional"}},{"before":"862f627b426cac902fb2e64d94320408c8392892","after":"c0975840df76da4f08bbd7b7b22be2afecd07113","ref":"refs/heads/main","pushedAt":"2024-09-16T15:32:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Console Insights] Make disclaimer wider\n\nScreenshots: https://imgur.com/a/s9RF7pz\n\nBug: 367298061\nChange-Id: I17f5287ad86fd129269525b80d3e2c1db9f00334\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865378\nReviewed-by: Ergün Erdoğmuş \nCommit-Queue: Ergün Erdoğmuş \nAuto-Submit: Wolfgang Beyer ","shortMessageHtmlLink":"[Console Insights] Make disclaimer wider"}},{"before":null,"after":"858da04beded00c8394e379fd21ae6fe50b1db7a","ref":"refs/heads/chromium/6722","pushedAt":"2024-09-16T15:03:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"RPP: maintain entry link borders if one is invisible\n\nFixed: 365929798\nChange-Id: I669eb4de1be467a0d5743790bd296ab870d00aa5\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865149\nAuto-Submit: Jack Franklin \nReviewed-by: Alina Varkki \nCommit-Queue: Alina Varkki ","shortMessageHtmlLink":"RPP: maintain entry link borders if one is invisible"}},{"before":"117e9556b2364baeec7ba4a361eba6251c7953ea","after":"862f627b426cac902fb2e64d94320408c8392892","ref":"refs/heads/main","pushedAt":"2024-09-16T14:48:34.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[RPP] Fix the annotation colors in dark mode\n\nDark:\n Side bar: https://screenshot.googleplex.com/mMks74rRqMrGA5t\n Connector: https://screenshot.googleplex.com/CnaEBPDWUaN4tWL\n Label: https://screenshot.googleplex.com/BG6AgXnpBxWVXq4\nLight:\n Connector: https://screenshot.googleplex.com/qY8eUJVbisuKoVu\n Label: https://screenshot.googleplex.com/5Ys5zLbj4jKmHf9\n\nBug: 364610354\nChange-Id: I03f1acf7019edee26b5671a9ad54d3122ac7dd1c\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5845412\nReviewed-by: Alina Varkki \nCommit-Queue: Nancy Li ","shortMessageHtmlLink":"[RPP] Fix the annotation colors in dark mode"}},{"before":"c22fc2a5920f231554c235d59013e5a2177d4731","after":"117e9556b2364baeec7ba4a361eba6251c7953ea","ref":"refs/heads/main","pushedAt":"2024-09-16T14:16:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Freestyler] Log raw response with metadata\n\nWe sometimes need to inspect `metadata` too so let's debug log\nfull AidaResponse\n\nBug: none\nChange-Id: I1ddbb78ef36c292a44fb980e715774eb889a7f13\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865377\nCommit-Queue: Alex Rudenko \nAuto-Submit: Ergün Erdoğmuş \nCommit-Queue: Ergün Erdoğmuş \nReviewed-by: Alex Rudenko ","shortMessageHtmlLink":"[Freestyler] Log raw response with metadata"}},{"before":"73cf86044cd2b6f004225b04e010e6bccb31d173","after":"c22fc2a5920f231554c235d59013e5a2177d4731","ref":"refs/heads/main","pushedAt":"2024-09-16T14:11:02.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Freestyler] Remove `modern layout techniques` part as it confuses the agent\n\nBug: 367258735\nChange-Id: Iec898d691501ac20278438b27b49fc712e29fd4f\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865671\nReviewed-by: Alex Rudenko \nCommit-Queue: Ergün Erdoğmuş \nAuto-Submit: Ergün Erdoğmuş \nCommit-Queue: Alex Rudenko ","shortMessageHtmlLink":"[Freestyler] Remove modern layout techniques part as it confuses th…"}},{"before":"3a9b57fa14ca7c2e8f3c189fdbea5296e3d9d817","after":"73cf86044cd2b6f004225b04e010e6bccb31d173","ref":"refs/heads/main","pushedAt":"2024-09-16T13:54:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"Fix position-anchor links for new anchor()/anchor-size() syntax\n\nThe arguments can be re-ordered and anchor-size() direction fully\nomitted.\n\nThis also fixes the issue of fallback values not being rendered.\n\nBug: 343516786, 365802559\nChange-Id: I09a53ea8b7c81def3d76551157f03d05be0d3a08\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5853472\nCommit-Queue: Rune Lillesveen \nReviewed-by: Philip Pfaffe \nReviewed-by: Changhao Han ","shortMessageHtmlLink":"Fix position-anchor links for new anchor()/anchor-size() syntax"}},{"before":"85653297c94223505352ec21bf118e6d4a0e3bbe","after":"3a9b57fa14ca7c2e8f3c189fdbea5296e3d9d817","ref":"refs/heads/main","pushedAt":"2024-09-16T13:49:30.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[FreestylerEval] Export evaluations as CSV\n\nBug: none\nChange-Id: I4765f5b77cb099107d38a1053fa1f78ae37e8399\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865670\nAuto-Submit: Ergün Erdoğmuş \nCommit-Queue: Alex Rudenko \nReviewed-by: Alex Rudenko ","shortMessageHtmlLink":"[FreestylerEval] Export evaluations as CSV"}},{"before":"6c381d7abab04f81a7b4c7a673633d6ab61dd320","after":"85653297c94223505352ec21bf118e6d4a0e3bbe","ref":"refs/heads/main","pushedAt":"2024-09-16T13:37:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"copybara-service[bot]","name":null,"path":"/apps/copybara-service","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/44061?s=80&v=4"},"commit":{"message":"[Console insights] Rename button from 'Let's go' to 'Continue'\n\nBug: b/367227176\nChange-Id: Ieed95c32fad5fb991a836cb82e8bb26b80d4b777\nReviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5865375\nAuto-Submit: Wolfgang Beyer \nReviewed-by: Ergün Erdoğmuş \nCommit-Queue: Wolfgang Beyer \nCommit-Queue: Ergün Erdoğmuş ","shortMessageHtmlLink":"[Console insights] Rename button from 'Let's go' to 'Continue'"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xOFQwMToxMzoyMi4wMDAwMDBazwAAAAS5H5Ui","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xOFQwMToxMzoyMi4wMDAwMDBazwAAAAS5H5Ui","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xNlQxMzozNzoxNC4wMDAwMDBazwAAAAS3eNyl"}},"title":"Activity · ChromeDevTools/devtools-frontend"}