1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 18:20:43 +09:00

LibWeb: Stub XMLHttpRequest.abort

This commit is contained in:
Luke Wilde 2022-11-05 03:35:02 +00:00 committed by Andreas Kling
parent 9805cdeaf5
commit 6c21c72492
Notes: sideshowbarker 2024-07-17 04:43:09 +09:00
3 changed files with 8 additions and 0 deletions

View file

@ -648,4 +648,9 @@ bool XMLHttpRequest::must_survive_garbage_collection() const
return false;
}
void XMLHttpRequest::abort()
{
dbgln("(STUBBED) XMLHttpRequest::abort()");
}
}