[jQuery] Selectors [@attr|=val] and [@attr~=val]. Have they been removed?

[jQuery] Selectors [@attr|=val] and [@attr~=val]. Have they been removed?

Hi all.
While playing with CSS selectors, I've found some strange things (I'm
using the SVN version, rev 445):
* Attribute selector [@class~=something] doesn't work (returns any
element with a class name)
* Attribute selector [@hreflang|=en] doesn't work (returns any element
with a hreflang attribute)
Has the support for these selectors been removed?
This is what I'm using for testing:
HTML:
<p class="pare-0">pare-0, <a hreflang="es" href="#">hreflang=es</a>
<p class="fill-0 pare-1">fill-0 pare-1 <a hreflang="en"
href="#">hreflang=en</a>

No class, <a href="#">no hreflang</a>


jQuery:
$("a[@hreflang|=en]").length; // 2, should be 1
$("a[@hreflang|=es]").length; // 2, should be 1
$("p[@class~=fill-0]").length; // 2, shoul be 1
--
Choan
<http://choangalvez.nom.es/>
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/