Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / move-by-character-003.html
blobaddca0b5e56cdeb17dc6c096e58fcba27a64ac4d
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 < 159; i++) {
17 moveSelectionForwardByCharacterCommand();
21 </script>
23 <title>Editing Test</title>
24 </head>
25 <body>
26 <div contenteditable id="root" class="editing">
27 <span id="test"><i>F and seven</i> years <b> as </b>our fathers f upon this
28 continent, a new nation, conceived &nbsp;&nbsp; in Liberty, and dedicated to the
29 proposition that all
30 <br>men are created equal.</span>
31 </div>
33 <script>
34 runEditingTest();
35 </script>
37 </body>
38 </html>