abaevbog

Results 261 comments of abaevbog

Really any kind of `modify` action on an item that excludes it from the current `itemTree` will do that. Another example is if you edit the title to not match...

@mrtcode I have been looking into one of the accessibility issues with the reader described in this nice and detailed [forums post](https://forums.zotero.org/discussion/comment/469784/#Comment_469784) and wanted to check in on what you...

I'm now realizing that while having such headers is helpful, for PDF it is not strictly needed since NVDA and JAWS do allow you to navigate between `region` components (which...

> We can't add/remove anything within in the EPUB DOM Oh, that is good to know! It is what I've been going after... Hm, if we were to place a...

> Yes. Gotcha ... No DOM manipulation for epub content. > Is there no way to achieve the same thing by modifying the attributes of an existing element? This is...

> I mean, if the screen reader can navigate between s in a PDF, why can't we set role="region" on the first element following the start of a location in...

My current approach is this: ``` placeA11yVirtualCursor () { let target = this._state.ariaNodeTarget; let doc = this._lastView._iframe.contentDocument; if (!target || !doc.contains(target)) return; let dummy = doc.createElement("div");; dummy.id = "ariaFocusDummy"; console.log("Virt...

Gotcha, I'll drop all DOM manipulations for EPUB. It seems to be possible with a few tweaks, at least for the outline, which is a decent starting point. I'll do...

@AbeJellinek per the vpat issue, we essentially need a way to modify the itemTree table with a keyboard to the same extent that one using a mouse would be able...