diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/test-document-util.js | 5 | ||||
| -rw-r--r-- | test/test-options-util.js | 1 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/test/test-document-util.js b/test/test-document-util.js index 334c78a5..34f4f8b3 100644 --- a/test/test-document-util.js +++ b/test/test-document-util.js @@ -167,7 +167,10 @@ async function testDocumentTextScanningFunctions(dom, {DocumentUtil, TextSourceR          // Test docRangeFromPoint          const documentUtil = new DocumentUtil(); -        const source = documentUtil.getRangeFromPoint(0, 0, false); +        const source = documentUtil.getRangeFromPoint(0, 0, { +            deepContentScan: false, +            normalizeCssZoom: true +        });          switch (resultType) {              case 'TextSourceRange':                  assert.strictEqual(getPrototypeOfOrNull(source), TextSourceRange.prototype); diff --git a/test/test-options-util.js b/test/test-options-util.js index af64e7dd..05af4214 100644 --- a/test/test-options-util.js +++ b/test/test-options-util.js @@ -347,6 +347,7 @@ function createProfileOptionsUpdatedTestData1() {              matchTypePrefix: false,              hidePopupOnCursorExit: false,              hidePopupOnCursorExitDelay: 0, +            normalizeCssZoom: true,              preventMiddleMouse: {                  onWebPages: false,                  onPopupPages: false, |