Fix incorrect check

This commit is contained in:
toasted-nutbread 2019-09-27 23:37:10 -04:00
parent 928d7aecd5
commit a5f393fa2c

View File

@ -234,7 +234,7 @@ class TextSourceRange {
if (next !== null) { break; }
next = node.parentNode;
if (node === null) { break; }
if (next === null) { break; }
node = next;
}