Followed by two things that are broken.
Chrome 22 breaks things
41–50 of 108 posts
Re: Chrome 22 breaks things
#42I've been seeing color abberations in text since my PC updated to Chrome 22. Most noticeable has been blue links showing up with a purple tint -- significantly different from the color showing in the Inspector. It's browser-wide, with extensions disabled -- I first noticed the change in link color on a Reddit comment thread, then saw it on Google Plus and my own website as well. http://i.imgur.com/Wjay2.png Has anyon…
Re: Chrome 22 breaks things
#43It sure beats the pains out of native development.
Re: Chrome 22 breaks things
#44>Chrome 22 Breaks Everything Followed by two things that are broken.
Re: Chrome 22 breaks things
#45- Floats don’t push block content down (http://jsfiddle.net/cvalleskey/WD9pB/)
- Z-index breaking when element is a child of a fixed parent (http://jsfiddle.net/cvalleskey/9S3S8/)
Re: Chrome 22 breaks things
#46Re: Chrome 22 breaks things
#47for position: fixed and changed stacking contexts, you're likely running into this: http://updates.html5rocks.com/2012/09/Stacking-Changes-Comin... Basically, the position: fixed on the parent of the span you're trying to put on top is now making the parent its own stacking context, which means that all children will be stacked relative to each other, not to the first absolutely or relatively positioned ancestor of t…
Re: Chrome 22 breaks things
#48I've been seeing color abberations in text since my PC updated to Chrome 22. Most noticeable has been blue links showing up with a purple tint -- significantly different from the color showing in the Inspector. It's browser-wide, with extensions disabled -- I first noticed the change in link color on a Reddit comment thread, then saw it on Google Plus and my own website as well. http://i.imgur.com/Wjay2.png Has anyon…
Edit: I'm on a Mac, 10.7.5, FWIW
Re: Chrome 22 breaks things
#49It happens with every 'last' menu item. No idea where that came from, but it's the first time I've noticed a Chrome upgrade in a long while.
Re: Chrome 22 breaks things
#50for position: fixed and changed stacking contexts, you're likely running into this: http://updates.html5rocks.com/2012/09/Stacking-Changes-Comin... Basically, the position: fixed on the parent of the span you're trying to put on top is now making the parent its own stacking context, which means that all children will be stacked relative to each other, not to the first absolutely or relatively positioned ancestor of t…