summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/crashtests/delete-at-text-following-svg.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/editing/crashtests/delete-at-text-following-svg.html')
-rw-r--r--testing/web-platform/tests/editing/crashtests/delete-at-text-following-svg.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/testing/web-platform/tests/editing/crashtests/delete-at-text-following-svg.html b/testing/web-platform/tests/editing/crashtests/delete-at-text-following-svg.html
new file mode 100644
index 0000000000..cc2040a2a3
--- /dev/null
+++ b/testing/web-platform/tests/editing/crashtests/delete-at-text-following-svg.html
@@ -0,0 +1,41 @@
+<!doctype html>
+<html>
+<head>
+<meta charset="utf-8">
+<style>
+mask, li {
+ float: inline-start;
+ animation-name: kf0;
+}
+@keyframes kf0 {}
+</style>
+<script>
+document.addEventListener("DOMContentLoaded", () => {
+ window.focus();
+ document.designMode = "on";
+ document.onpointerlockerror = onPointerLockErrorOrAnimationStart;
+ const mask = document.querySelector("mask");
+ mask.requestPointerLock();
+ mask.prepend(document.querySelector("table"));
+});
+function onPointerLockErrorOrAnimationStart() {
+ document.execCommand("underline");
+ document.execCommand("delete");
+ onanimationstart = onPointerLockErrorOrAnimationStart;
+ try {
+ getSelection().setBaseAndExtent(
+ document.querySelector("li"), 0,
+ document.querySelector("thead"), 0
+ );
+ } catch (e) {}
+}
+</script>
+<body><svg>
+<mask>
+<clipPath>
+</clipPath></mask></svg><sup>
+AA
+<li>
+<br></li></sup><table>
+<thead>
+</thead></table>