google-chrome-devtools

JavaScript Code Works Faster when JS Profiling is on? What?

一世执手 提交于 2020-08-26 18:59:50
问题 I'm facing a very strange behaviour with my application - if I start the profiler (must be JS profiler), the code works almost twice as fast. I've reproduced it with a very simple code which can be found on this fiddle: https://jsfiddle.net/zagrwk44/ The thing is that this reproduces only on machines with old graphic cards. I've managed to reproduce it on a machine with AMD Radeon HD 6450 graphic card. On a newer machine this does not reproduce anymore. How come the profiler makes the code

What happened to the Remote Devices panel?

荒凉一梦 提交于 2020-08-26 18:36:07
问题 I'm running Chrome 80 and while getting ready for mobile debugging I observe the following: The panel has been migrated to its own tab and its functionality has changed. I checked the changelog but there is no mention of this change. One of the features removed with this change was a way to import the device dimensions and properties into the Emulated Devices panel. Is there any place to read up on this change and its reasoning? Even if it's a pull request I'd be happy. 回答1: Source code is

Is it possible debug iOS Chrome on Windows 10?

青春壹個敷衍的年華 提交于 2020-08-22 05:11:48
问题 As the title says, I need to debug a website opened with mobile Chrome on an iOS device (iPod, iPad etc.) on Windows 10. I have successfully set up iOS Safari debugging on Windows 10 via Chrome DevTools (GitHub repo , helpful comment). I would love to do the same thing except with Chrome or Firefox and not Safari. Is it even possible? 回答1: Yes it is. You'll need node first and (web inspector enabled on iOS>Settings>Safari) then... Install weinre sudo npm -g i weinre (or) npm i -g weinre Run

Is it possible debug iOS Chrome on Windows 10?

一笑奈何 提交于 2020-08-22 05:11:00
问题 As the title says, I need to debug a website opened with mobile Chrome on an iOS device (iPod, iPad etc.) on Windows 10. I have successfully set up iOS Safari debugging on Windows 10 via Chrome DevTools (GitHub repo , helpful comment). I would love to do the same thing except with Chrome or Firefox and not Safari. Is it even possible? 回答1: Yes it is. You'll need node first and (web inspector enabled on iOS>Settings>Safari) then... Install weinre sudo npm -g i weinre (or) npm i -g weinre Run

Chrome Developer Tools Connection ID

 ̄綄美尐妖づ 提交于 2020-08-22 05:06:11
问题 I am using Chrome Developer tools (version 49). Under the Network tab, there is a series of columns such as Name, Status, Type..etc. Does anyone know what the purpose of the Connection ID column Each row has an ID such as 13461, 14410, 8738, 8741, 13516.... Also what do the numbers mean? 回答1: HTTP uses a networking protocol called TCP behind the scenes. Browsers maintain pools of TCP sockets and connections. The Connection ID numbers in DevTools refer to a particular TCP connection. Why are

Chrome Developer Tools Connection ID

北城余情 提交于 2020-08-22 05:06:10
问题 I am using Chrome Developer tools (version 49). Under the Network tab, there is a series of columns such as Name, Status, Type..etc. Does anyone know what the purpose of the Connection ID column Each row has an ID such as 13461, 14410, 8738, 8741, 13516.... Also what do the numbers mean? 回答1: HTTP uses a networking protocol called TCP behind the scenes. Browsers maintain pools of TCP sockets and connections. The Connection ID numbers in DevTools refer to a particular TCP connection. Why are

Chrome 84 Inspect element, find results not highlighted in yellow like before

时光怂恿深爱的人放手 提交于 2020-08-15 04:53:24
问题 As per usual when making automated tests I use "Inspect"(CTRL+SHIFT+I) in Chrome to find element by xpath, id, CSS selector etc. For example: //li/a[contains(text(), "Products")] Above is an xpath from this page. In previous versions of Chrome in "DevTools"/"Elements" after pressing CTRL+F to open the "Find" option and pasting this xpath element is highlighted in DevTools window. In new version of chrome it is not highlighted, the usual "1/1" results is displayed in far right of the "Find"

Chrome 84 Inspect element, find results not highlighted in yellow like before

旧街凉风 提交于 2020-08-15 04:53:12
问题 As per usual when making automated tests I use "Inspect"(CTRL+SHIFT+I) in Chrome to find element by xpath, id, CSS selector etc. For example: //li/a[contains(text(), "Products")] Above is an xpath from this page. In previous versions of Chrome in "DevTools"/"Elements" after pressing CTRL+F to open the "Find" option and pasting this xpath element is highlighted in DevTools window. In new version of chrome it is not highlighted, the usual "1/1" results is displayed in far right of the "Find"