I have a problem - when I try to select a text in element, only the first character gets highlighted. I'm running Chromium 70.0.3538.77 (Official Build) Built on Ubuntu , running on Ubuntu 16.04 (64-bit). Problem does not exist on Firefox. Basic HTML:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<svg version="1.1">
<g>
<text y=20>
wabalabadub dub
</text>
</g>
</svg>
</body>
</html>
When I doubleclick a word, it gets selected whole, but I need to be able to select more than 1 word. So, does anyone know a solution to this problem? Or a workaround:) Thanks in advance.