Andrew Kaster
Andrew Kaster
First, we need to set the CMAKE_FOLDER property. This property is useful in Xcode and Visual Studio, and that's about it. It organizes targets into folders so that the IDE...
In this case: ``` auto array = Array {}; // First line: 8 bytes, second line: 24 bytes, third line, 32 bytes array.fill('A'); array[7] = '\n'; array[31] = '\n'; array[63]...
This has been a thing since at least spring 2022, when clang trunk was clang-15(?). https://github.com/llvm/llvm-project/issues/53815 This issue was reduced by @mjz19910 from AK::Variant back in the day. Currently it's...
This means that it is not possible to load, e.g. pages with javascript modules from the local filesystem.
According to the latest web app information that I downloaded (https://discord.com/assets/81726.fd218f2db8ffabddf299.js), we need the following APIs on window.crypto.subtle: - [x] `generateKey(algorithm: { name: "RSA-OAEP", modulusLength: 2048, hash: "SHA-256" }, keyUsages:...
It's no change in application behavior to have these objects owned by the function-scope static map in Protocol.cpp, while allowing us to remove some ugly FIXMEs from time immemorial. I...
The WebSocket IPC channel has had a set_certificates API since its inception, but it has never done anything but drop the user certificates on the floor. When connecting to a...
And add a test for it!
https://html.spec.whatwg.org/multipage/dnd.html - [ ] DragEvent - [ ] Drag data store concept - [ ] DataTransfer IDL Interface - [ ] DataTransferList IDL Interface - [ ] DataTransferItem IDL Interface...
Instead these methods return void, and the implementations log their errors to dbgln. This makes it hard for callers to react to errors and report them properly. Currently thinking of...