Open
Description
I've encountered a problem when I need to do a case-insensitive attribute match
As discussed here
http://stackoverflow.com/questions/5671238/css-selector-case-insensitive-for-attributes
Shouldn't these be equivalent?
let nodes = doc.firstNodeMatchingSelector("link[rel='shortcut icon']")
and
let nodes = doc.firstNodeMatchingSelector("link[rel='Shortcut icon' i]")