Jake Archibald

Results 161 issues of Jake Archibald

On https://proxx.app, the URL-hiding behaviour was unwanted during games because the viewport height only changes once the URL bar is fully hidden/shown. This causes anything fixed to the bottom of...

From https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/COF0YKkjZVQ: > Currently we limit the scrollers developers can set to be exactly 100% viewport filling, do developers have other use cases? Imagine a grid/flexbox layout like this which...

Just make sure it works. We may also want to add a refresh button in case the polling gets stuck. Not that it should, but y'know, in case.

_mortal kombat theme tune_ Add a streaming service worker, which includes the initial state.

```js const writable = await byteStorage.append(name:String); ``` Same as `.write`, where `start` is equal to the store's size.

Seeking may need a new streaming type. (Another @surma feedback)

Good point by @surma: Rather than return a promise that resolves with a stream, could we return the stream immediately and error it with rejection cases?

If I have a spec like: 1. Let *obj* be a new object. 2. Invoke *callback* with *obj*. 3. Do something with *obj*. …microtasks will be handled after step two....

``` js caches.open(name) .then(c => c.put("/", new Response("lololol"))); ``` In cache storage, the requests & responses can be mismatched in terms of their original fetching, or either/both can be of...

enhancement

IE6 & 7 don't support base64 encoded images. IE8 does, but if the element is enhanced by css3pie the background disappears. I'm pretty sure VML doesn't support base64, so this...