mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 16:46:08 +00:00
LibWeb: Add parsing support for the remaining transform functions
This commit is contained in:
parent
ad4f35ff37
commit
c4f46893f6
Notes:
sideshowbarker
2024-07-17 17:11:02 +09:00
Author: https://github.com/skyrising
Commit: c4f46893f6
Pull-request: https://github.com/SerenityOS/serenity/pull/13093
Reviewed-by: https://github.com/AtkinsSJ
4 changed files with 89 additions and 4 deletions
|
@ -291,7 +291,17 @@ enum class TextTransform {
|
|||
};
|
||||
|
||||
enum class TransformFunction {
|
||||
Matrix,
|
||||
Translate,
|
||||
TranslateX,
|
||||
TranslateY,
|
||||
Scale,
|
||||
ScaleX,
|
||||
ScaleY,
|
||||
Rotate,
|
||||
Skew,
|
||||
SkewX,
|
||||
SkewY,
|
||||
};
|
||||
|
||||
enum class VerticalAlign {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue