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