Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/crashtests/blur-from-rtl-editing-host-containing-big-video.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script>
"use strict";
document.addEventListener("DOMContentLoaded", () => {
const editingHost = document.querySelector("span[contenteditable]");
editingHost.focus();
editingHost.remove();
}, {once: true});
</script>
</head>
<body>
a
<span contenteditable dir="rtl">
<video width="10000">
</body>
</html>