2026-03-23 08:09:30 -03:00
|
|
|
// https://drafts.csswg.org/cssom/#the-cssrulelist-interface
|
2022-09-05 06:41:26 -03:00
|
|
|
[Exposed=Window]
|
2021-09-28 11:17:11 -03:00
|
|
|
interface CSSRuleList {
|
2021-09-29 14:41:46 -03:00
|
|
|
|
2021-09-28 11:17:11 -03:00
|
|
|
getter CSSRule? item(unsigned long index);
|
|
|
|
|
readonly attribute unsigned long length;
|
2021-09-29 14:41:46 -03:00
|
|
|
|
2021-09-28 11:17:11 -03:00
|
|
|
};
|