bbrk24

Results 116 comments of bbrk24

``` Thread 0 Coords: (0, 0) Instruction: Thread 0 Coords: (1, 0) Instruction: Thread 0 Coords: (1, 2) Instruction: Thread 0 Coords: (0, 1) Instruction: ``` That's even more wrong

Why would it keep that comment in particular though? What makes that comment different from the other comments in the file or the rest of the project?

> But then calling super.setUp() errors out. @s4cha If you mark the test class itself as `Sendable` then it works: ```swift @MainActor final class LayoutTests: XCTestCase, Sendable { ... }...

Is this necessarily a bug? I guess it is *technically* a regression but I don't know that it was ever officially supported.

One complication is that the DOM doesn't have a concept of natural/intrinsic size. This is particularly a problem for controls like `` (Picker) since those differ greatly between browsers.

I'm pretty sure `offsetWidth` and `offsetHeight` return the current size, not the natural size.

> such as `var body` being `some View` instead of `some Scene` Would the same thing apply to mobile? Currently UIKitBackend only allows one visible window at a time, at...

On iOS, the checkbox style could take inspiration from these list-like pickers found in system apps like settings: ![image](https://github.com/user-attachments/assets/eb75a0e2-e9e3-415c-871b-b12bba84d06a) Not sure if tvOS has an equivalent.

Note that UIKitBackend has *two* pickers: One powered by UIPickerView, used on iOS and sometimes Mac Catalyst; and one powered by UITableView, used on tvOS and sometimes Mac Catalyst. The...

For future backends: - Android can use [WebView](https://developer.android.com/reference/android/webkit/WebView) - Web can use `` probably