Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / pasteboard / paste-text-006.html
blob70242e7005acc734007d205ad45d6e5b5d9d96c2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 </style>
11 <script src="../editing.js"></script>
12 <script src="../../resources/dump-as-markup.js"></script>
13 <script>
15 Markup.noAutoDump();
16 Markup.waitUntilDone();
18 function editingTest() {
19 for (i = 0; i < 39; i++)
20 extendSelectionForwardByCharacterCommand();
22 Markup.dump('root', 'Before copy');
23 copyCommand();
24 pasteCommand();
25 Markup.dump('root', 'After first paste');
27 pasteCommand();
28 Markup.dump('root', 'After second paste');
30 Markup.notifyDone();
33 </script>
35 <title>Editing Test</title>
36 </head>
37 <body onload="runEditingTest()" contenteditable id="root">
38 <div id="test" class="editing">There is a tide in the affairs of men,</div>
39 <div class="editing">Which taken at the flood leads on to fortune.</div>
40 <div class="editing">Omitted, all the voyage of their life,</div>
41 <div class="editing">Is bound in shallows and in miseries.</div>
42 </body>
43 </html>