Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / 5028447.html
blob69f0704db14e8b420751ad540cf405cc974307b6
1 <html style="font-size: 50px;">
2 <style>
3 body {
4 font-size: 50%;
6 </style>
7 <body contenteditable="true">
8 All the text here should be the same size.&nbsp;
9 <script>
10 document.execCommand("SelectAll");
11 document.execCommand("Copy");
12 window.getSelection().modify("move", "forward", "character");
13 document.execCommand("Paste");
14 </script>
15 </body>