Isn't "text-overflow: ellipsis" valid CSS?

Viewed 857

This code triggers an error when run through the W3C CSS Validator:

p{
    text-overflow: ellipsis;
}

I get:

Line     Code context      Error/Warning
2        p                 Parse Error [empty string]

Is it just a bug in the validator or am I missing something really obvious?

2 Answers
Related