- @JSName('getMatchedCSSRules')
- @DomName('Window.getMatchedCSSRules')
- @DocsEditable()
- @Experimental()
- @Returns('_CssRuleList|Null')
- @Creates('_CssRuleList')
Returns all CSS rules that apply to the element's pseudo-element.
Source
@JSName('getMatchedCSSRules') /** * Returns all CSS rules that apply to the element's pseudo-element. */ @DomName('Window.getMatchedCSSRules') @DocsEditable() @Experimental() // non-standard @Returns('_CssRuleList|Null') @Creates('_CssRuleList') List<CssRule> getMatchedCssRules(Element element, String pseudoElement) native;