Attribute Selector Bug?

Attribute Selector Bug?


Can any of you reproduce this bug?
Markup:
<a href="/path/To/File.ext" ... />
<form action="/path/To/File.ext" ... />
Bug:
$('a[href^=/path]') will yield one selected item
$('form[actionf^=/path]') will yield zero selected items
Thoughts?