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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-from-p-with-style.html

Issue 2333223002: Convert editing/deleting/merge-paragraph-from-p*.html to use w3c test harness (Closed)
Patch Set: 2016-09-14T12:46:38 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/merge-paragraph-from-p-with-style-2.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 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 p {color: red;}
6 </style>
7 </head>
8 <body>
9 <p id="description">This tests deleting line break before p.
10 "world" in "helloworld" should be italicized in red.</p>
11 <div id="test" contenteditable>
12 hello
13 <p style="font-style: italic;">world</p>
14 </div>
15 </div>
16 <script src="../editing.js"></script>
17 <script src="../../resources/dump-as-markup.js"></script>
18 <script>
19
20 function editingTest() {
21 moveSelectionForwardByLineCommand();
22 deleteCommand();
23
24 Markup.description(document.getElementById('description').textContent);
25 Markup.dump('test');
26 }
27
28 runEditingTest();
29 </script>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-from-p-with-style-2.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698