chromium/third_party/blink/web_tests/svg/text/selection-dragging-outside-1.html

<!DOCTYPE html>
<title>Text Selection when dragging mouse outside the SVG text element</title>
<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" style="border: 1px solid black;">
  <g>
    <text id="firsttext" x="130" y="30">Happy, Web</text>
    <text id="middletext" x="130" y="50">Happy, SVG</text>
    <text id="endtext" x="130" y="70">Happy, ;)link</text>
  </g>
  <text id="line" x="130" y="150">Hello World. Hello, SVG.</text>
</svg>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="resources/SelectionTestCase.js"></script>
<script>
test(function() {
  selectTextFromCharToPoint({ id: 'line', offset: 0 }, { x: 400, y: 400 }, { startElementId: 'line', start: 0, endElementId: "line", end: 24 });
  selectTextFromCharToPoint({ id: 'line', offset: 7 }, { x: 400, y: 400 }, { startElementId: "line", start: 7, endElementId: "line", end: 24 });

  var absEndPos = getEndPosition('firsttext', 3, { x : 0, y : 0});
  selectTextFromCharToPoint({ id: 'firsttext', offset: 0 }, absEndPos, { startElementId: 'firsttext', start: 0, endElementId: "firsttext", end: 4});
  absEndPos = getEndPosition('firsttext', 3, { x : 0, y : 10});
  selectTextFromCharToPoint({ id: 'firsttext', offset: 0 }, absEndPos, { startElementId: 'firsttext', start: 0, endElementId: "middletext", end: 4});
  absEndPos = getEndPosition('firsttext', 3, { x : 0, y : 20});
  selectTextFromCharToPoint({ id: 'firsttext', offset: 0 }, absEndPos, { startElementId: 'firsttext', start: 0, endElementId: "middletext", end: 4});
  absEndPos = getEndPosition('firsttext', 3, { x : 0, y : 30});
  selectTextFromCharToPoint({ id: 'firsttext', offset: 0 }, absEndPos, { startElementId: 'firsttext', start: 0, endElementId: "endtext", end: 4});
  absEndPos = getEndPosition('firsttext', 3, { x : 0, y : 40});
  selectTextFromCharToPoint({ id: 'firsttext', offset: 0 }, absEndPos, { startElementId: 'firsttext', start: 0, endElementId: "endtext", end: 4});
  absEndPos = getEndPosition('firsttext', 3, { x : 0, y : 50});
  selectTextFromCharToPoint({ id: 'firsttext', offset: 0 }, absEndPos, { startElementId: 'firsttext', start: 0, endElementId: "endtext", end: 4});
});
</script>