1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:37:35 +00:00

LibWeb: Implement Path2D class

This commit is contained in:
Sam Atkins 2022-08-11 16:50:23 +01:00 committed by Andreas Kling
parent a37ab7b9f8
commit 2ec52bbbd5
9 changed files with 92 additions and 0 deletions

View file

@ -56,6 +56,8 @@ static bool is_wrappable_type(Type const& type)
return true;
if (type.name == "Blob")
return true;
if (type.name == "Path2D")
return true;
return false;
}