Open
Bug 2026017
Opened 5 months ago
Updated 4 days ago
Implement Element.pseudo() to return CSSPseudoElement
Categories
(Core :: DOM: CSS Object Model, enhancement)
Core
DOM: CSS Object Model
Tracking
()
NEW
People
(Reporter: boris, Unassigned)
References
(Blocks 2 open bugs, )
Details
(Keywords: dev-doc-needed)
It seems we don't have a bug for this API but there are tests related to it. This function, pseudo(), is used to return the element object of a specific pseudo element:
partial interface Element {
CSSPseudoElement? pseudo(CSSOMString type);
};
Given that we have implemented CSSPseudoElement interface, but no one uses it. This API is the only way to expose CSSPseudoElement per current spec.
| Reporter | ||
Updated•5 months ago
|
Summary: Implement Element.psueo() to return CSSPseudoElement → Implement Element.pseudo() to return CSSPseudoElement
| Reporter | ||
Updated•5 months ago
|
Component: CSS Parsing and Computation → DOM: CSS Object Model
| Reporter | ||
Updated•5 months ago
|
Keywords: dev-doc-needed
| Reporter | ||
Updated•5 months ago
|
Updated•4 days ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•