Victor Porof | 6e09692 | 2022-06-10 13:01:05 +0000 | [diff] [blame] | 1 | // 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] |
| 7 | interface 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 | |
| 14 | partial interface Element { |
| 15 | CSSPseudoElement? pseudo(CSSOMString type); |
| 16 | }; |