Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / paste-text-008.html
blob226f830cd06df6d428ab50623a80a730cefb54a6
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
13 <script>
15 function editingTest() {
16 for (i = 0; i < 51; i++)
17 moveSelectionForwardByCharacterCommand();
18 for (i = 0; i < 46; i++)
19 extendSelectionForwardByCharacterCommand();
20 copyCommand();
21 pasteCommand();
22 pasteCommand();
25 </script>
27 <title>Editing Test</title>
28 </head>
29 <body contenteditable id="root">
31 <div class="editing" id="test">Omitted, all the voyage of their life,<div class="editing">Is bound in shallows and in miseries.</div>Upon such a full sea are we now afloat,</div>
33 <script>
34 runEditingTest();
35 </script>
37 </body>
38 </html>