(n, s)
| 549 | }, d3_selectAll = function(s, n) { |
| 550 | return n.querySelectorAll(s); |
| 551 | }, d3_selectRoot = d3_document.documentElement, d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector, d3_selectMatches = function(n, s) { |
| 552 | return d3_selectMatcher.call(n, s); |
| 553 | }; |
| 554 | if (typeof Sizzle === "function") { |
| 555 | d3_select = function(s, n) { |
| 556 | return Sizzle(s, n)[0] || null; |
no test coverage detected