blob: 5120cb6870ee80a654db91b7f8833ba86e4af97f [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
test(() => {
assert_not_equals(window.internals, undefined,
'This test requires window.internals to access clipboard');
assert_selection(
'<div contenteditable><b>|<br></b></div>',
selection => {
selection.setClipboardData('abc');
selection.document.execCommand('pasteAndMatchStyle');
},
'<div contenteditable><b>abc|</b></div>',
'pasteAndMatchStyle');
});
</script>