Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/insertHTML-after-subscript-canvas-containing-textarea.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
document.addEventListener("DOMContentLoaded", () => {
document.designMode = "on";
document.execCommand("selectAll");
document.execCommand("subscript");
document.execCommand("insertHTML");
}, {once: true});
</script>
</head>
<body>
<time dir="auto">
A
<canvas>
<textarea dir="rtl">
</textarea>
</canvas>
</time>
</body>
</html>