gunnarmein-ts

Results 23 comments of gunnarmein-ts

This article: https://stackoverflow.com/questions/61401384/can-text-within-an-iframe-be-copied-to-clipboard mentions: "To use the API in iframes, you need to enable it with [Permissions Policy](https://w3c.github.io/webappsec-permissions-policy/), which defines a mechanism that allows for selectively enabling and disabling various...

I am experiencing the same - and I have some fixes in my fork, although I don't think they would hold up to Arno's standards. I will make a summary...

[test.zip](https://github.com/arnog/mathlive/files/15014496/test.zip) @arnog Here is a minimal repro. Hope it helps.

[fixes2.pdf](https://github.com/arnog/mathlive/files/15202282/fixes2.pdf) [fixes1.pdf](https://github.com/arnog/mathlive/files/15202284/fixes1.pdf) @Aguss17 I don't know of any fix outside the library. I am attaching printouts of the changes I made. I am not going to submit a pull request...

@Aguss17 I can't help you in the next few days, traveling. Perhaps it has to do with how we are using it: - "sandboxed" - .show() on focusin, .hide() on...

Verified on mathlive demo page, also true for \int_0^1 f(x) dx (lower first)

The MDN docs talk only about setting .adoptedStyleSheets, not reading it. Is it possible that it can contain a non-iterable object in this version of Chrome? https://developer.mozilla.org/en-US/docs/Web/API/Document/adoptedStyleSheets Relevant code in...

Work-around: `.MLK__rows > .MLK__row div { --_keycap-height: 15px; }`

Every shortcut conversion could snapshot the state of the mathfield before conversion and set a one-keystroke-trap for backspace, and if backspace is pressed, it could restore that snapshot before processing...

@arnog Seems like this could be fixed by changing `// If no items visible, don't show anything` ` if (!menu.visible) return false;` to `// If no items visible, don't show...