Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / move-between-blocks-no-001.html
blob09866e676e7b0cd623d354fc9d4ae4bd5270a20d
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 < 50; i++) {
17 moveSelectionForwardByCharacterCommand();
19 for (i = 0; i < 15; i++) {
20 deleteCommand();
24 </script>
26 <title>Editing Test</title>
27 </head>
28 <body>
29 <!-- body not contenteditable. treat these two divs like separate widgets.
30 arrowing from one to the other is prevented. -->
31 <div contenteditable id="root" class="editing">
32 <span id="test">We hold these truths to be self-evident,</span>
33 </div>
34 <div contenteditable class="editing">
35 that all men are created equal, ...
36 </div>
38 <script>
39 runEditingTest();
40 </script>
42 </body>
43 </html>