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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/deleting/delete-at-paragraph-boundaries-009.html

Issue 2297553002: Convert editing/deleting/delete-at-paragraph-boundaries-009.html to use w3c test harness (Closed)
Patch Set: 2016-08-31T14:27:07 Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/deleting/delete_at_paragraph_boundaries.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3
4 <style>
5 .editing {
6 border: 2px solid red;
7 font-size: 24px;
8 }
9 .explanation {
10 border: 2px solid blue;
11 padding: 12px;
12 font-size: 24px;
13 margin-bottom: 24px;
14 }
15 .scenario { margin-bottom: 16px;}
16 .scenario:first-line { font-weight: bold; margin-bottom: 16px;}
17 .expected-results:first-line { font-weight: bold }
18 </style>
19 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script >
20
21 <script>
22
23 function editingTest() {
24 moveSelectionForwardByLineCommand();
25 extendSelectionForwardByLineCommand();
26 for (i = 0; i < 3; i++)
27 extendSelectionForwardByCharacterCommand();
28 deleteCommand();
29 }
30
31 </script>
32
33 <title>Editing Test</title>
34 </head>
35 <body>
36
37 <div class="explanation">
38 <div class="scenario">
39 Tests:
40 <br>
41 Deleting when a selection starts at the beginning of a
42 paragraph preceded by a text element and extends into the middle of a following paragraph.
43 </div>
44 <div class="expected-results">
45 Expected Results:
46 <br>
47 Should see the three lines in the red box. First line should be "one". Next one should be "ee". Next one should be "four". Insertion point should be blinking a t the start of the second line.
48 </div>
49 </div>
50
51 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: s pace; -khtml-line-break: after-white-space;">
52 <div id="test" class="editing">
53 one
54 <p style="margin-top: 0; margin-bottom: 0">two</p>
55 <p style="margin-top: 0; margin-bottom: 0">three</p>
56 <p style="margin-top: 0; margin-bottom: 0">four</p>
57 </div>
58 </div>
59
60 <script>
61 runEditingTest();
62 </script>
63
64 </body>
65 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/deleting/delete_at_paragraph_boundaries.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698