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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/selection/move-by-character-002.html

Issue 1809963002: [Editing][CodeHealth] Use w3c testharness in editing/seletion/move-by-* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 4 years, 9 months 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
OLDNEW
(Empty)
1 <html>
2 <head>
3
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
9 }
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script >
12
13 <script>
14
15 function editingTest() {
16 for (i = 0; i < 33; i++) {
17 moveSelectionForwardByCharacterCommand();
18 }
19 }
20
21 </script>
22
23 <title>Editing Test</title>
24 </head>
25 <body>
26 <div contenteditable id="root" class="editing">
27 <span id="test">a<img src="../resources/abe.png">new
28 <br>nation <i> </i> <img src="../resources/abe.png"> conceived
29 <br>nation<img src="../resources/abe.png"></span>
30 </div>
31
32 <script>
33 runEditingTest();
34 </script>
35
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698