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

Unified Diff: third_party/WebKit/LayoutTests/svg/text/selection-dragging-outside-2.html

Issue 1541083002: Fix invalid selection produced when dragging mouse outside the SVG text element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/svg/text/selection-dragging-outside-2.html
diff --git a/third_party/WebKit/LayoutTests/svg/text/selection-dragging-outside-2.html b/third_party/WebKit/LayoutTests/svg/text/selection-dragging-outside-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..16022b4ddb1159751ac3675793d7c097fb1e7d84
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/svg/text/selection-dragging-outside-2.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<style>
+text {
+ font: 10px Arial;
+}
+</style>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="400" height="400" viewBox="0 0 500 500" style="border: 1px solid black;">
+ <g>
+ <text id="line1" x="10" y="30">Hello World. Hello, SVG.</text>
+ </g>
+ <g transform="translate(120, 30)">
+ <text id="line2" x="50" y="50">Hello World. Hello, SVG.</text>
+ </g>
+ <g transform="translate(240, 30)">
+ <text id="line3" x="100" y="100">Hello World. Hello, SVG.</text>
+ </g>
+</svg>
+<script src="../../resources/js-test.js"></script>
+<script src="resources/SelectionTestCase.js"></script>
+<script type="text/javascript">
+function getEndPosition(id, offset, gap) {
+ var element = document.getElementById(id);
+ var endPos = element.getEndPositionOfChar(offset);
+ endPos.x += gap.x;
+ endPos.y += gap.y;
+ var absEndPos = toAbsoluteCoordinates(endPos, element);
+ return absEndPos;
+}
+
+var absEndPos = getEndPosition('line3', 10, { x : 0, y : 30});
+selectTextFromCharToPoint({ id: 'line1', offset: 7 }, absEndPos, { startElementId: "line1", start: "7", endElementId: "line3", end: "11" });
+
+absEndPos = getEndPosition('line2', 10, { x : 0, y : 30});
+selectTextFromCharToPoint({ id: 'line1', offset: 7 }, absEndPos, { startElementId: "line1", start: "7", endElementId: "line2", end: "11" });
+
+absEndPos = getEndPosition('line3', 10, { x : 0, y : 30});
+selectTextFromCharToPoint({ id: 'line2', offset: 7 }, absEndPos, { startElementId: "line2", start: "7", endElementId: "line3", end: "11" });
+
+absEndPos = getEndPosition('line1', 8, { x : 0, y : -30});
+selectTextFromCharToPoint({ id: 'line3', offset: 7 }, absEndPos, { startElementId: "line3", start: "7", endElementId: "line1", end: "9" });
+
+absEndPos = getEndPosition('line1', 8, { x : 0, y : -30});
+selectTextFromCharToPoint({ id: 'line2', offset: 7 }, absEndPos, { startElementId: "line2", start: "7", endElementId: "line1", end: "9" });
+
+absEndPos = getEndPosition('line2', 8, { x : 0, y : -30});
+selectTextFromCharToPoint({ id: 'line3', offset: 7 }, absEndPos, { startElementId: "line3", start: "7", endElementId: "line2", end: "9" });
+</script>

Powered by Google App Engine
This is Rietveld 408576698