Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /editing/other/insert-text-with-surrogate-pairs.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="author" title="Psychpsyo" href="mailto:psychpsyo@gmail.com">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
</head>
<body>
<div contenteditable="true" id="editable"></div>
<script>
test(() => {
document.getSelection().selectAllChildren(editable);
document.execCommand("inserttext", false, "🏆");
assert_equals(editable.textContent, "🏆", "Surrogate pair should survive insertText");
}, "Surrogate pair should survive insertText");
</script>
</body>