summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2022-09-20 21:06:39 -0400
committerGitHub <noreply@github.com>2022-09-20 21:06:39 -0400
commit480869c3d1d820b344d23989d2deae64a594869e (patch)
treebc1d0c5143b71e312322e3dc851cb2c98050b8c6 /test
parentac373a67944a3241f96091b2bcd94f1b337a3940 (diff)
Exclude documentElement from zoom calculation (#2227)
* Exclude documentElement from zoom calculation * Add an option * Refactor zoom coordinate conversion functions * Convert zoom coordinates for text sources * Rename variable * Convert rect coordinate spaces * Handle shadow DOM
Diffstat (limited to 'test')
-rw-r--r--test/test-document-util.js5
-rw-r--r--test/test-options-util.js1
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,