Marcos Cáceres
Marcos Cáceres
You would obviously need some way to cryptographically verify that the geo-origin actually belongs to, for example, target.com.
Over on WebGPU, there is the following [IDL fragment](https://www.w3.org/TR/webgpu/#webgpu-interfaces) specified: ```WebIDL interface mixin GPUObjectBase { attribute (USVString or undefined) label; }; ``` Leaving aside the issues with this `label` attribute...
An issue about how browser's should localize `DOMException`'s `.message` attribute came up as part of the Geolocation API: https://github.com/w3c/geolocation-api/issues/50 In Geolocation, we have a `GeolocationPositionError`, which is similar to a...
Not sure if this will work, but thought I'd pitch it... Methods defined by various specs will check in a method call is "allowed to use" a particular permission/powerful feature....
There are things in the platform that can only succeed because of some user action. For example, directly calling: ``` JS document.body.requestFullscreen(); ``` In Gecko, results in the following warning:...
Given that it's now been years since we killed off the Java binding side of things (and there can't be any other kind of binding but an ES binding for...
In section [Event handlers on elements, Document objects, and Window objects](https://html.spec.whatwg.org/#event-handlers-on-elements,-document-objects,-and-window-objects) The table* that lists the `WindowEventHandlers` event handlers should include: * ongamepadconnected | gamepadconnected * ongamepaddisconnected | gamepaddisconnected Linking...
Other specs are relying on: - [ ] current browsing context - [ ] WebDriver error - [ ] WebDriver error code - [ ] extension command - [ ]...
ReSpec support automatically cross linking to other specs via its xref feature. For [specs that are indexed](https://github.com/w3c/browser-specs), you can just link to things directly. I'll send a short pull request...
This is a bit of a long shot, but I figured I'd ask... I found myself needing to serialize a URL via the API, but with "[exclude fragment](https://url.spec.whatwg.org/#url-serializer-exclude-fragment)" being true....