1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:17:44 +00:00

LibHTML: Implement the universal selector ("*")

This commit is contained in:
Andreas Kling 2019-11-19 18:22:12 +01:00
parent 516708aab2
commit 56dad2272c
4 changed files with 12 additions and 0 deletions

View file

@ -9,6 +9,7 @@ public:
struct Component {
enum class Type {
Invalid,
Universal,
TagName,
Id,
Class,