Thomas Steiner

Results 461 comments of Thomas Steiner

> I think so, yes. Great. > I guess this PR just needs the appropriate changes to `Formatter()` (beyond the informative table entry)? Also @terinjokes's [comment](https://github.com/whatwg/console/pull/218#issuecomment-1339479193) is interesting about `Formatter()`...

So looking back at the original post https://github.com/whatwg/console/pull/218#issue-1477863265, which of the two behaviors is considered correct?

FYI, interested parties may be wanting to follow the relevant [TPAC discussions](https://github.com/w3c/webappswg/issues/91#:~:text=1%20hour%20%2D%20install,proposals%20like%20navigator.install.) once they happen.

In theory this should already be possible with [`block-ellipsis`](https://drafts.csswg.org/css-overflow-4/#propdef-block-ellipsis), which is [one of the components of the `(-webkit-)line-clamp` shorthand](https://drafts.csswg.org/css-overflow-4/#propdef--webkit-line-clamp:~:text=The%20line%2Dclamp%20property%20is%20a%20shorthand%20for%20the%20max%2Dlines%2C%20block%2Dellipsis%2C%20and%20continue%20properties.). In practice, it doesn't seem implemented yet, though.

Oh, wait, sorry, just read that this is not about changing the ellipsis to something else, but _styling_ the ellipsis. So this wishes for something like a `::block-ellipsis` CSS pseudo...

This sounds like a natural addition to [User Preference Media Features Client Hints Headers](https://wicg.github.io/user-preference-media-features-headers/), which is modeled after [CSS' `prefers-*`](https://drafts.csswg.org/mediaqueries-5/#mf-user-preferences) (that is also queryable via JavaScript [`matchMedia('(prefers-*: *)').matches`](https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia)) and for...

For inspiration, here's my (customized) "System Settings" from [SAP Concur](https://www.concur.com/) as a proof of user need for this. It annoys me every time I need to teach a US app...

I know this is still in flux. If we have nested empty folders, they should be listed, too. So for example, for a file hierarchy like this: ``` / ├─...

Currently your code would ignore the `empty/` folder, since there's no file in it.

> @tomayac Ah, that's interesting. The return type of directoryOpen, which is delegated to, is: > > ``` > export interface FileWithDirectoryAndFileHandle extends File { > directoryHandle?: FileSystemDirectoryHandle; > handle?:...