Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / style / 5091898.html-disabled
blob859b6ea2d0a2ea4138425a866d1feab4ef4c9f10
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>
3 <script>
4 document.body.focus();
5 document.execCommand("SelectAll");
6 document.execCommand("Underline");
7 document.execCommand("Copy");
8 window.getSelection().modify("move", "forward", "character");
9 document.execCommand("Paste");
10 </script>
11 </html>