Files
ladybird/Tests/LibWeb/Text/input/wpt-import/interfaces/css-pseudo.idl
2026-04-04 23:36:58 +02:00

18 lines
584 B
Plaintext

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into webref
// (https://github.com/w3c/webref)
// Source: CSS Pseudo-Elements Module Level 4 (https://drafts.csswg.org/css-pseudo-4/)
[Exposed=Window]
interface CSSPseudoElement {
readonly attribute CSSOMString type;
readonly attribute Element element;
readonly attribute (Element or CSSPseudoElement) parent;
readonly attribute CSSOMString selectorText;
CSSPseudoElement? pseudo(CSSOMString type);
};
partial interface Element {
CSSPseudoElement? pseudo(CSSOMString type);
};