I am using the following CSS to modify the color of highlighted text:
*::selection {
background: #000;
color: #fff;
}
*::-moz-selection {
background: #000;
color: #fff;
}
In Chrome when you highlight an unordered list the bullets have the default colors

Example: here
Is this a bug or can you use CSS to fix this?
It doesn’t look like
::selectionis going to make it into the spec, so it makes sense that not a lot of attention was paid to this behaviour.http://www.w3.org/TR/css3-selectors/