Skip to content

Instantly share code, notes, and snippets.

View bgadrian's full-sized avatar
✍️
available for OSS Go packages

B.G.Adrian bgadrian

✍️
available for OSS Go packages
View GitHub Profile
@bgadrian
bgadrian / count.css.rules.js
Last active August 29, 2015 14:03
Count css rules from a stylesheet
// http://stackoverflow.com/questions/9906794/internet-explorers-css-rules-limits
//when you reach 4096 css rules per file .... IE <=9
function countCSSRules() {
var results = '',
log = '';
if (!document.styleSheets) {
return;
}
for (var i = 0; i < document.styleSheets.length; i++) {