aboutsummaryrefslogtreecommitdiff
path: root/ext/js/accessibility/google-docs-util.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2022-09-25 09:42:20 -0400
committerGitHub <noreply@github.com>2022-09-25 09:42:20 -0400
commit642dcb8fc9e78007d8704717b2ff10b8ab4ecafc (patch)
tree59cbefd88855e9ec7965b6cc9af3e46fea4bafe9 /ext/js/accessibility/google-docs-util.js
parent75d30594511a6593044565829ad55369fecaf4cd (diff)
Google Docs accessibility simplifications (#2237)
* Use getAttribute instead of dataset, in case SVG node APIs are unusual * Use pointer-events instead of fill * Use elementFromPoint instead of elementsFromPoint
Diffstat (limited to 'ext/js/accessibility/google-docs-util.js')
-rw-r--r--ext/js/accessibility/google-docs-util.js23
1 files changed, 13 insertions, 10 deletions
diff --git a/ext/js/accessibility/google-docs-util.js b/ext/js/accessibility/google-docs-util.js
index 12f2db24..ada0ff2d 100644
--- a/ext/js/accessibility/google-docs-util.js
+++ b/ext/js/accessibility/google-docs-util.js
@@ -33,26 +33,28 @@ class GoogleDocsUtil {
* @returns {?TextSourceRange|TextSourceElement} A range for the hovered text or element, or `null` if no applicable content was found.
*/
static getRangeFromPoint(x, y, {normalizeCssZoom}) {
- const selector = '.kix-canvas-tile-content svg>g>rect';
- const styleNode = this._getStyleNode(selector);
+ const styleNode = this._getStyleNode();
styleNode.disabled = false;
- const elements = document.elementsFromPoint(x, y);
+ const element = document.elementFromPoint(x, y);
styleNode.disabled = true;
- for (const element of elements) {
- if (!element.matches(selector)) { continue; }
+ if (element !== null && element.matches('.kix-canvas-tile-content svg>g>rect')) {
const ariaLabel = element.getAttribute('aria-label');
- if (typeof ariaLabel !== 'string' || ariaLabel.length === 0) { continue; }
- return this._createRange(element, ariaLabel, x, y, normalizeCssZoom);
+ if (typeof ariaLabel === 'string' && ariaLabel.length > 0) {
+ return this._createRange(element, ariaLabel, x, y, normalizeCssZoom);
+ }
}
return null;
}
- static _getStyleNode(selector) {
+ static _getStyleNode() {
// This <style> node is necessary to force the SVG <rect> elements to have a fill,
// which allows them to be included in document.elementsFromPoint's return value.
if (this._styleNode === null) {
const style = document.createElement('style');
- style.textContent = `${selector}{fill:#0000 !important;}`;
+ style.textContent = [
+ '.kix-canvas-tile-content{pointer-events:none!important;}',
+ '.kix-canvas-tile-content svg>g>rect{pointer-events:all!important;}'
+ ].join('\n');
const parent = document.head || document.documentElement;
if (parent !== null) {
parent.appendChild(style);
@@ -67,13 +69,14 @@ class GoogleDocsUtil {
const content = document.createTextNode(text);
const svgText = document.createElementNS('http://www.w3.org/2000/svg', 'text');
const transform = element.getAttribute('transform') || '';
+ const font = element.getAttribute('data-font-css') || '';
svgText.setAttribute('x', element.getAttribute('x'));
svgText.setAttribute('y', element.getAttribute('y'));
svgText.appendChild(content);
const textStyle = svgText.style;
this._setImportantStyle(textStyle, 'all', 'initial');
this._setImportantStyle(textStyle, 'transform', transform);
- this._setImportantStyle(textStyle, 'font', element.dataset.fontCss);
+ this._setImportantStyle(textStyle, 'font', font);
this._setImportantStyle(textStyle, 'text-anchor', 'start');
element.parentNode.appendChild(svgText);