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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/inserting/insert_div_text_into_text.html

Issue 2298043003: Convert editing/pasteboard/insert-div-text-into-text.html to use w3c test harness (Closed)
Patch Set: 2016-09-01T12:27:29 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/pasteboard/insert-div-text-into-text.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <script src="../../resources/testharness.js"></script> 2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script> 3 <script src="../../resources/testharnessreport.js"></script>
4 <script src="../assert_selection.js"></script> 4 <script src="../assert_selection.js"></script>
5 <div id="log"></div>
6 <script> 5 <script>
7 test(() => assert_selection( 6 test(() => assert_selection(
8 [ 7 [
9 '<div contenteditable>', 8 '<div contenteditable>',
10 '<div>foo |bar</div>', 9 'There b|e no line breaks in this sentence.',
11 '</div>', 10 '</div>',
12 ].join(''), 11 ].join(''),
13 'insertParagraph', 12 'insertHTML <div>XYZ</div>',
14 [ 13 [
15 '<div contenteditable>', 14 '<div contenteditable>',
16 '<div>foo\u{00A0}</div><div>|bar</div>', 15 'There bXYZ|e no line breaks in this sentence.',
17 '</div>', 16 '</div>',
18 ].join('')), 17 ].join('')),
19 'Keep a space after insert paragraph'); 18 'insertHTML with DIV to text');
20 </script> 19 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/pasteboard/insert-div-text-into-text.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698