W3C DOM tests - styleSheet tests

This is element x. It has inline style border: 1px solid #cc0000. Element y is the test style sheet.

Test scripts

styleSheet

alert(document.styleSheets.length);

cssRules

alert(y.cssRules.length);
alert(y.cssRules[y.cssRules.length-1].style.cssText);

rules

alert(y.rules.length);
alert(y.rules[y.rules.length-1].style.color);

imports

alert(y.imports.length);