Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1662)

Unified Diff: third_party/WebKit/LayoutTests/editing/assert_selection.js

Issue 2963113002: Introduce Selection#compute{Left,Top} in assert_selection() (Closed)
Patch Set: 2017-06-29T15:20:58 Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/editing/assert_selection.js
diff --git a/third_party/WebKit/LayoutTests/editing/assert_selection.js b/third_party/WebKit/LayoutTests/editing/assert_selection.js
index a92d65e31d0bfbfbec4c43f0a8d59590ea5a4b72..1392b39dfd29628d33ffb8e7c072564f81259555 100644
--- a/third_party/WebKit/LayoutTests/editing/assert_selection.js
+++ b/third_party/WebKit/LayoutTests/editing/assert_selection.js
@@ -60,6 +60,9 @@ const DumpAs = {
FLAT_TREE: 'flattree',
};
+const kOffsetLeftOfBodyInIFrame = 16;
+const kOffsetTopOfBodyInIFrame = 16;
+
/** @const @type {string} */
const kTextArea = 'TEXTAREA';
@@ -664,6 +667,28 @@ class Serializer {
}
/**
+ * @param {!HTMLElement} element
+ * @return {number}
+ */
+function computeLeft(element) {
+ let left = kOffsetLeftOfBodyInIFrame;
+ for (let runner = element; runner; runner = runner.offsetParent)
+ left += runner.offsetLeft;
+ return left;
+}
+
+/**
+ * @param {!HTMLElement} element
+ * @return {number}
+ */
+function computeTop(element) {
+ let top = kOffsetTopOfBodyInIFrame;
+ for (let runner = element; runner; runner = runner.offsetParent)
+ top += runner.offsetTop;
+ return top;
+}
+
+/**
* @this {!DOMSelection}
* @param {string} html
* @param {string=} opt_text
@@ -712,6 +737,8 @@ class Sample {
this.selection_.document.offsetLeft = this.iframe_.offsetLeft;
this.selection_.document.offsetTop = this.iframe_.offsetTop;
this.selection_.setClipboardData = setClipboardData;
+ this.selection_.computeLeft = computeLeft;
+ this.selection_.computeTop = computeTop;
this.load(sampleText);
}

Powered by Google App Engine
This is Rietveld 408576698