function queryDeclarationAll(name, value) { | |
return [].filter.call(document.all, function(element) { | |
return window.getComputedStyle(element)[name] === value; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment