Lachlan Hunt wrote:
What do they do if there is an element named <null> in the document?
IE 8 Beta: Returns null or empty NodeList
Interesting. What happens in IE8b1 if you do:
document.querySelector("")
Throws a SYNTAX_ERR.
In that case, the null behavior doesn't make any sense to me... I would
expect querySelector(null) to either behave as querySelector("null") (as
in Opera) or as querySelector("") (as in Gecko and apparently Webkit)...
Sounds like whatever gets specified here we need a test for it in the
test suite, at least.
-Boris