Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: LayoutTests/editing/input/ctrl-up-down.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="container"> 1 <div id="container">
2 <p id="description"></p> 2 <p id="description"></p>
3 Manual steps: 3 Manual steps:
4 <ol> 4 <ol>
5 <li>Move middle of the first paragraph</li> 5 <li>Move middle of the first paragraph</li>
6 <li>Type Ctrl+Up</li> 6 <li>Type Ctrl+Up</li>
7 <li>Caret should be start of paragrah</li> 7 <li>Caret should be start of paragrah</li>
8 <li>Type Ctrl+Down</li> 8 <li>Type Ctrl+Down</li>
9 <li>Caret should be next paragrah</li> 9 <li>Caret should be next paragrah</li>
10 <li>Do above step with Ctrl+Shift key to extend selection</li> 10 <li>Do above step with Ctrl+Shift key to extend selection</li>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 shouldBe('selection.focusOffset', '84'); 42 shouldBe('selection.focusOffset', '84');
43 43
44 eventSender.keyDown('upArrow', ['ctrlKey', 'shiftKey']); 44 eventSender.keyDown('upArrow', ['ctrlKey', 'shiftKey']);
45 shouldBeEqualToString('selection.type', 'Range'); 45 shouldBeEqualToString('selection.type', 'Range');
46 shouldBe('selection.focusNode', 'paragraph1'); 46 shouldBe('selection.focusNode', 'paragraph1');
47 shouldBe('selection.focusOffset', '3'); 47 shouldBe('selection.focusOffset', '3');
48 } 48 }
49 if (window.testRunner) 49 if (window.testRunner)
50 $('container').outerHTML = ''; 50 $('container').outerHTML = '';
51 </script> 51 </script>
52 <script src="../../fast/js/resources/js-test-post.js"></script>
OLDNEW
« no previous file with comments | « LayoutTests/editing/execCommand/use-css.html ('k') | LayoutTests/editing/input/style-change-during-input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698