Chrome: Console hovering on the variable doesn't work - google-chrome

So this morning my Chrome Stable version updated from version 78 to 79.0.3945.79, and with this new update the code hovering is broken in the dev console.
To explain more exactly, if you put a breakpoint on some code line, and it triggered, in the previous versions you could have hovered a variable (this.something) and a small tooltip with all the variable data would have appeared above it. Since the 79 version this doesn't work anymore and no tooltip appears when hovering over such an element, or when highlighting one or one line of code like "object.name1.value", where before this .value was shown.
Did anyone else encounter this problem? I also had this on 79 when it was in Beta but I thought it was a bug so hence I used stable.

Looks like a bug. For now, you can install chrome canary - Version 81. Thx to https://support.google.com/chrome/thread/16855096?msgid=22548123

Related

Source Code Tab in Chrome Developer Tools no longer pops up the value when hovering over a variable

Suddenly I can no longer call up variable values ​​when hovering in the Source Code tab of Google Chrome's Developer Tools. Nothing happens. A few days ago everything was working fine. Current Chrome Version (105.0.5195.102)
What's weird: if I deploy a version and then try, everything works. It just doesn't work on localhost
If I use res in the callback function, I don't see a pop-up
I'm using 105.0.5195.128, and it will not work with my bundled TS - code. It has always worked as it should.
But look.... I took a Demo Angular: https://ng-devtools.netlify.app/ , and somehow it works... but the popup is very different from what I'm used to.

Chrome debugger looses blue highlight while code walkthrough

i faced this issue recently. Actually i have to debug a JS file with 40K - 50K lines of code, while stepping through the codes the blue highlight ( which denotes that the current control is at that line) disappear whereas the control is still stopped at that line. Have anyone faced this issue? What is the solution for the above issue?

after subsequent clicks, paper-dropwn-menu list items seem to be crunched up

I recreated the top item from the DropDown demos, at https://elements.polymer-project.org/elements/paper-dropdown-menu?view=demo:demo/index.html&active=paper-dropdown-menu
The only thing different I did was replace the strings with "Internal"and "External". It seemed that when the DDL is rendered on the screen, the first time it works correctly when it is clicked, but then subsequent times, it is made really small with a scroll bar that you cant really see.
You can see what the form looks like first, what it looks like when i click on it the first time.... and what i click on it the second time respectively.
This is a known issue with the older Dartium version that is based on Chromium 39. I haven't checked the newer Dartium that is based on Chromium 45. AFAIR the newer version is shipped since Dart 1.15 but perhaps only with 1.16-dev. If you try it in a current Chrome version it should work as expected.
To resolve this issues, there isTo resolve this issue, there is an attribute called: no-animations you can add to the paper-dropdwon-menu which will stop animations and cause it to render correctly.
based on Polymer styling, you can say either just: no-animations or no-animations="true"
<paper-dropdown-menu no-animations="true">
....
</paper-dropdown-menu>

Chrome Developer Tools IndexDb filter - items disappear

Working with Chrome version 35.0.1916.153 m , when I open Resources/IndexedDB and I select a table, all the items appear properly, but as soon as I write something in the input search box the items disappear from the list.
The items are not removed from the IndexDB, but to see them again I need to restart Chrome.
Any idea?
See probable duplicate Chrome console keeps getting stuck in a quirky state.
See https://code.google.com/p/chromium/issues/detail?id=379483 for insight.
The problem was fixed in a newer version of Chrome, but it is likely that the stable(?) version you are using has not received the update yet.

Chrome 32 can't display Asian characters in tab title

Today I updated to Chrome 32 on Ubuntu 12.04, but tab title can't display Asian characters correctly, it displays typo instead. It works fine on Windows.
I've fired a bug for chromium project, however I still want to know if this is just for me or a common problem.
When I type "search" in Google, tab title shows:
When I type "検索", it shows:.
Can anyone reproduce this? In fact, I would love to fix this by myself but I may need some help on where I can find the code related to displaying tab title, the whole chromium code repository is just too big...