LibWeb: Add AbortSignal as a wrappable type

This commit is contained in:
Luke Wilde 2022-02-19 21:59:07 +00:00 committed by Andreas Kling
parent ced7e8ab28
commit 0e6c7eea0f
Notes: sideshowbarker 2024-07-17 18:30:34 +09:00

View file

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