mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb: Add internal use_pseudo_element to DOM Element
This commit is contained in:
parent
cfe9577b48
commit
f621dc464b
Notes:
sideshowbarker
2024-07-17 02:22:23 +09:00
Author: https://github.com/bplaat
Commit: f621dc464b
Pull-request: https://github.com/SerenityOS/serenity/pull/22210
12 changed files with 61 additions and 96 deletions
|
@ -24,6 +24,7 @@ public:
|
|||
|
||||
virtual size_t length() const = 0;
|
||||
virtual String item(size_t index) const = 0;
|
||||
virtual CSS::PropertyID property_id_by_index(size_t index) const = 0;
|
||||
|
||||
virtual Optional<StyleProperty> property(PropertyID) const = 0;
|
||||
|
||||
|
@ -63,6 +64,7 @@ public:
|
|||
|
||||
virtual size_t length() const override;
|
||||
virtual String item(size_t index) const override;
|
||||
virtual CSS::PropertyID property_id_by_index(size_t index) const override;
|
||||
|
||||
virtual Optional<StyleProperty> property(PropertyID) const override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue