1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:57:43 +00:00

LibWeb: Add initial version of pointer-events CSS property

This commit is contained in:
huwdp 2021-10-05 19:47:13 +01:00 committed by Linus Groh
parent fe5c2b7bb9
commit ec43f7a2b0
7 changed files with 53 additions and 7 deletions

View file

@ -211,6 +211,11 @@ enum class WhiteSpace {
PreWrap,
};
enum class PointerEvents {
Auto,
None
};
class StyleValue : public RefCounted<StyleValue> {
public:
virtual ~StyleValue();