diff options
| author | Alex Yatskov <alex@foosoft.net> | 2020-02-24 21:31:14 -0800 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2020-02-24 21:31:14 -0800 | 
| commit | d32f4def0eeed1599857bc04c973337a2a13dd8b (patch) | |
| tree | 61149656f361dd2d9998d67d68249dc184b73fbb /ext/fg/js/source.js | |
| parent | 0c5b9b1fa1599cbf769d96cdebc226310f9dd8bc (diff) | |
| parent | 706c3edcffb0078d71fd5b58775f16cf5fc1205b (diff) | |
Merge branch 'master' into testing
Diffstat (limited to 'ext/fg/js/source.js')
| -rw-r--r-- | ext/fg/js/source.js | 16 | 
1 files changed, 13 insertions, 3 deletions
diff --git a/ext/fg/js/source.js b/ext/fg/js/source.js index 11d3ff0e..6dc482bd 100644 --- a/ext/fg/js/source.js +++ b/ext/fg/js/source.js @@ -82,7 +82,11 @@ class TextSourceRange {      }      equals(other) { -        if (other === null) { +        if (!( +            typeof other === 'object' && +            other !== null && +            other instanceof TextSourceRange +        )) {              return false;          }          if (this.imposterSourceElement !== null) { @@ -362,7 +366,7 @@ class TextSourceElement {      setEndOffset(length) {          switch (this.element.nodeName.toUpperCase()) {              case 'BUTTON': -                this.content = this.element.innerHTML; +                this.content = this.element.textContent;                  break;              case 'IMG':                  this.content = this.element.getAttribute('alt'); @@ -409,6 +413,12 @@ class TextSourceElement {      }      equals(other) { -        return other && other.element === this.element && other.content === this.content; +        return ( +            typeof other === 'object' && +            other !== null && +            other instanceof TextSourceElement && +            other.element === this.element && +            other.content === this.content +        );      }  }  |