Style/background color issue after upgrading chrome to version 81
See original GitHub issueWavesurfer.js version(s):
3.3.1 and 3.3.2
Browser and operating system version(s):
Chrome Version 81.0.4044.92 (Official Build) (64-bit) / Windows 10 1909
Code needed to reproduce the issue:
mounted() {
this.wave = WaveSurfer.create({
container: this.$refs.waveform,
waveColor: '#3686c9',
progressColor: '#C06C84',
barWidth: 2,
cursorColor: 'transparent',
});
this.wave.load(this.url);
everything was working just fine before chrome updated to 81 last night this is the appearance i’m after, and as you see it works fine on chrome 80, i downgraded to test that it works.
on chrome 81 when i keep the cursor color set to “transparent”, it doesn’t show any progress color at all.
if i remove the cursor color as in default or set it to any other color, the whole waveform gets a black background.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:13
Top Results From Across the Web
Chrome 83: Change colors of new form styling - Stack Overflow
According to the post I would say it should be possible to change this form theme to match the color set of a...
Read more >CSS background-color not honored in disabled SELECT ...
Issue 100234: CSS background-color not honored in disabled SELECT element. Reported by schedule slumb...@gmail.com slumb. ... Chrome Version : 14.0.835.202
Read more >Google Issues 'Critical' Update Warning For Chrome Users
Picked up by security specialist Sophos, Google has quietly issued a warning that Chrome has discovered a new security flaw across Windows, Mac ......
Read more >What's New In DevTools (Chrome 108)
In the Styles pane, DevTools fades out the inactive properties. Hover over the icon next to it to understand why the rule has...
Read more >Address bar has mysteriously gained a black background ...
Not sure if it will be the same for you, but it wasn't Chrome causing it for me. It was my Windows 10...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
can you see if it’s related to this commit: https://github.com/katspaugh/wavesurfer.js/commit/d0187a9533d9492e950e31cd547583293e6a241a
try setting the
drawingContextAttributes.desynchronized
option tofalse
:Switching off
desynchronized
painting seems to fix the issue.