blob: dbe4c5461f6ae2199968bb77c81d32570f55f1c7 [file] [log] [blame]
Victor Porof6e096922022-06-10 13:01:05 +00001// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into webref
3// (https://github.com/w3c/webref)
4// Source: CSS Pseudo-Elements Module Level 4 (https://drafts.csswg.org/css-pseudo-4/)
5
6[Exposed=Window]
7interface CSSPseudoElement : EventTarget {
8 readonly attribute CSSOMString type;
9 readonly attribute Element element;
10 readonly attribute (Element or CSSPseudoElement) parent;
11 CSSPseudoElement? pseudo(CSSOMString type);
12};
13
14partial interface Element {
15 CSSPseudoElement? pseudo(CSSOMString type);
16};