summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/selection/crashtests/selection-modify-around-textarea.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/selection/crashtests/selection-modify-around-textarea.html')
-rw-r--r--testing/web-platform/tests/selection/crashtests/selection-modify-around-textarea.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/selection/crashtests/selection-modify-around-textarea.html b/testing/web-platform/tests/selection/crashtests/selection-modify-around-textarea.html
new file mode 100644
index 0000000000..113dea5ffa
--- /dev/null
+++ b/testing/web-platform/tests/selection/crashtests/selection-modify-around-textarea.html
@@ -0,0 +1,23 @@
+<!doctype html>
+<html>
+<head>
+<meta charset="utf-8">
+<script>
+"use strict";
+document.addEventListener("DOMContentLoaded", () => {
+ const time = document.querySelector("time");
+ getSelection().setBaseAndExtent(time, 2, time, 3);
+ getSelection().modify("move", "left", "line");
+ getSelection().collapseToStart();
+});
+</script>
+</head>
+<body><time style="user-select:none">
+<h5>
+<pre contenteditable></pre>
+<textarea></textarea>
+</h5>
+<h6></h6>
+<textarea></textarea>
+</body>
+</html>