Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / move-3875618-fix.html
blob0c761170f02ec7cb40149a5a94e41e7e00275390
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 .cell {
11 padding: 12px;
12 font-size: 24px;
13 height: 48px;
15 </style>
16 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
18 <script>
20 function editingTest() {
21 extendSelectionForwardByLineCommand();
22 moveSelectionForwardByLineCommand();
25 </script>
27 <title>Editing Test</title>
28 </head>
29 <body contenteditable id="root" class="editing">
30 <div id="test">There is a tide<br>in the affairs of men</div><div>Which taken at the flood</div>
32 <script>
33 runEditingTest();
34 </script>
36 </body>
37 </html>