Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /selection/crashtests/selection-modify-line-into-svg-use.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
addEventListener("DOMContentLoaded", () => {
const textarea = document.querySelector("textarea");
getSelection().collapse(textarea, 0);
textarea.focus();
getSelection().modify("extend", "left", "line");
}, {once: true});
</script>
</head>
<body>
<svg>
<use xlink:href="#a"></use>
<polygon id="a"></polygon>
</svg>
<textarea></textarea>
</body>
</html>