I keep getting an orange box that says Repaints on Scroll in my input boxes. I don't know why I am getting it and would like to remove it. I am not sure if it is an issue with chrome. How do I fix this or remove it? I have restarted chrome and it keeps coming back.
Asked
Active
Viewed 738 times
6
-
It looks weird... But we need something more to help you, like a piece of code. If you want a weird solution, try something like `$('html').html(function(i, s){ return s.replace(/repaints on scroll/gi, ""); });`. Anyway *I think and hope* there is better solution :) – kosmos May 21 '14 at 21:44
-
Put the link here then we can inspect – LGVentura May 21 '14 at 21:52
-
As note, chrome does not paint code or text by itself. That text is part of something that you have in your code. @LGVentura has a better idea than mine. Can you share a link to that page? – kosmos May 21 '14 at 21:59
-
your chrome puts it on all sites containing input boxes? – LGVentura May 21 '14 at 22:02
-
Yes its on all my input boxes. I turned off all my extensions and restarted chrome. That seems to work. I looked at the same page with Mozilla and I didn't get the same issue. I can't really provide a link it is on my localhost. I could post the js file. It is really odd. – Seth May 21 '14 at 22:10
-
Which chrome extensions do you have? Could you list here? – kosmos May 21 '14 at 22:25
-
Edit this Cookie and JSON Formatter – Seth May 21 '14 at 22:32
-
The problem continues to persist. Removing the extensions didn't work. – Seth May 21 '14 at 22:47
-
I still thinking that you have something in your code that causes it. Try to do a file search looking for that text inside on all files in your project. You should find it – kosmos May 22 '14 at 00:03
1 Answers
7
It's a debug feature of Chrome you seem to have turned on without noticing. In the Developer Tools window look for a tab called 'Rendering' It's down by the console so you'll want to have that visible first. In the rendering tab there are some check boxes, one of which will be 'Show potential scroll bottlenecks' Uncheck that and the boxes will be gone.

user3666068
- 86
- 1
-
-
-
1@FelipeMicaroniLalli you have to act as if you are opening the console. Click on the console icon and then it'll be among the four tabs: "Console, Search, Emulation, Rendering" – Jay Aug 10 '15 at 16:04