Andrew Kaster

Results 170 issues of 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...

👀 pr-needs-review

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]...

bug

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...

build issue

This means that it is not possible to load, e.g. pages with javascript modules from the local filesystem.

bug

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:...

enhancement
task list

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...

👀 pr-needs-review

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...

enhancement

And add a test for it!

👀 pr-needs-review

https://html.spec.whatwg.org/multipage/dnd.html - [ ] DragEvent - [ ] Drag data store concept - [ ] DataTransfer IDL Interface - [ ] DataTransferList IDL Interface - [ ] DataTransferItem IDL Interface...

enhancement
task list

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...

enhancement