<html style="font-family: Arial; font-size: 13px;"> | |
<body contenteditable="true" style="font-family: 'Times New Roman'; font-weight: bold;">This text should be Times New Roman bold.</body> | |
<script> | |
document.body.focus(); | |
document.execCommand("SelectAll"); | |
document.execCommand("Underline"); | |
document.execCommand("Copy"); | |
window.getSelection().modify("move", "forward", "character"); | |
document.execCommand("Paste"); | |
</script> | |
</html> |