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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/inserting/insert-space.html

Issue 2451423003: Add a test case for bug 659109 (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | 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 <script> 5 <script>
6 test(() => assert_selection( 6 test(() => assert_selection(
7 '<div contenteditable><p>A|B</p></div>', 7 '<div contenteditable><p>A|B</p></div>',
8 'insertText \ ', 8 'insertText \ ',
9 '<div contenteditable><p>A |B</p></div>'), 9 '<div contenteditable><p>A |B</p></div>'),
10 'insert a plain space in the middle of text node'); 10 'insert a plain space in the middle of text node');
(...skipping 29 matching lines...) Expand all
40 selection => { 40 selection => {
41 var para = selection.document.getElementById('para'); 41 var para = selection.document.getElementById('para');
42 para.appendChild(selection.document.createTextNode('A')); 42 para.appendChild(selection.document.createTextNode('A'));
43 para.appendChild(selection.document.createTextNode(' B')); 43 para.appendChild(selection.document.createTextNode(' B'));
44 selection.collapse(para.firstChild, 1); 44 selection.collapse(para.firstChild, 1);
45 45
46 selection.document.execCommand('insertText', false, ' '); 46 selection.document.execCommand('insertText', false, ' ');
47 }, 47 },
48 '<div contenteditable><p id="para">A\u00A0| B</p></div>'), 48 '<div contenteditable><p id="para">A\u00A0| B</p></div>'),
49 'Insert a &nbsp; instead of plain space when it is inserted before the text no de that has a leading plain space'); 49 'Insert a &nbsp; instead of plain space when it is inserted before the text no de that has a leading plain space');
50
51 test(() => assert_selection(
52 '<div contenteditable id="editor"><br> </div>',
53 selection => {
54 var editor = selection.document.getElementById('editor');
yosin_UTC9 2016/10/28 06:13:50 We don't need to have id="editor", you can write a
joone 2016/10/28 18:20:16 Done.
55 selection.collapse(editor.firstChild, 0);
56 selection.document.execCommand('insertText', false, ' ');
57 selection.document.execCommand('insertText', false, ' ');
58 selection.document.execCommand('insertText', false, ' ');
59 },
60 '<div contenteditable id="editor">\u00A0 \u00A0| </div>'),
61 'Insert spaces into the editable <div> that only has <br> and space as child') ;
50 </script> 62 </script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698