(el)
| 8 | var a11y_viewport_height = 1; |
| 9 | |
| 10 | function applyA11yNodeStyle(el) { |
| 11 | el.style.cssText = |
| 12 | "position:fixed;pointer-events:none;overflow:hidden;" + |
| 13 | "margin:0;padding:0;border:0;background:transparent;" + |
| 14 | "color:transparent;opacity:0.001;box-sizing:border-box;" + |
| 15 | "white-space:nowrap;"; |
| 16 | } |
| 17 | |
| 18 | function setA11yNodeBounds(el, x, y, width, height) { |
| 19 | var rect = canvas.getBoundingClientRect(); |