I'm working to patch jQuery to support svgweb. So far, Ive been making
good progress. Today, while digging through the jQuery code, I found
that jQuery seems to use a native browser method, querySelectorAll, in
place of the Sizzle selector query engine, if querySelectorAll exists.
Since my patches are against Sizzle, I have to set
document.querySelectorAll = null to force jQuery to use Sizzle.
https://developer.mozilla.org/en/DOM/document.querySelectorAll
Do you guys have any thoughts on the document.querySelectorAll method
as it relates to svgweb?