aboutsummaryrefslogtreecommitdiff
path: root/ext/fg/js/document.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-09-15 16:09:46 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-09-15 16:09:46 -0400
commit073420a121a0b615989e4b240ca910e7f10d84f3 (patch)
tree1aa9ec57f82d228cae69e018be3e6c14ba7a56f7 /ext/fg/js/document.js
parent58778612778df944628b4697dc51caccbeb22f79 (diff)
Normalize XHTML document node.nodeNode to upper case
Diffstat (limited to 'ext/fg/js/document.js')
-rw-r--r--ext/fg/js/document.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fg/js/document.js b/ext/fg/js/document.js
index 079a5034..9afc44f0 100644
--- a/ext/fg/js/document.js
+++ b/ext/fg/js/document.js
@@ -105,7 +105,7 @@ function docRangeFromPoint(x, y, options) {
let imposterContainer = null;
if (elements.length > 0) {
const element = elements[0];
- switch (element.nodeName) {
+ switch (element.nodeName.toUpperCase()) {
case 'IMG':
case 'BUTTON':
return new TextSourceElement(element);