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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/assert_selection.html

Issue 2303533003: Introduce selection.setClipboardData() in assert_selection() (Closed)
Patch Set: 2016-09-01T18:36:42 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/assert_selection.js » ('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 <script> 5 <script>
6 function checked_assert_selection(input, command, output) { 6 function checked_assert_selection(input, command, output) {
7 try { 7 try {
8 assert_selection(input, command, output); 8 assert_selection(input, command, output);
9 } catch (exception) { 9 } catch (exception) {
10 return exception.message; 10 return exception.message;
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 `\t but got foo,\n` + 126 `\t but got foo,\n` +
127 `\t sameupto fo`); 127 `\t sameupto fo`);
128 }, 'Compare result'); 128 }, 'Compare result');
129 129
130 test(() => { 130 test(() => {
131 assert_selection( 131 assert_selection(
132 '<div contenteditable><p>^test|</p></div>', 132 '<div contenteditable><p>^test|</p></div>',
133 'insertHTML <span style="color: green">green</span>', 133 'insertHTML <span style="color: green">green</span>',
134 '<div contenteditable><p><span style="color: green">green|</span></p></d iv>'); 134 '<div contenteditable><p><span style="color: green">green|</span></p></d iv>');
135 }, 'multiple spaces in function'); 135 }, 'multiple spaces in function');
136
137 test(() => {
138 assert_selection(
139 '<div contenteditable>|</div>',
140 selection => {
141 selection.setClipboardData('<b>foo</b>');
142 selection.document.execCommand('paste');
143 },
144 '<div contenteditable><b>foo|</b></div>',
145 'set HTML fragment to clipboard and paste');
146
147 assert_selection(
148 '<div contenteditable>|</div>',
149 selection => {
150 selection.setClipboardData('<b>foo</b>');
151 selection.document.execCommand('pasteAndMatchStyle');
152 },
153 '<div contenteditable>foo|</div>',
154 'set HTML fragment to clipboard and pasteAndMatchStyle');
155
156 assert_selection(
157 '<div contenteditable>|</div>',
158 selection => {
159 selection.setClipboardData('<b>foo</b>', 'FOO');
160 selection.document.execCommand('pasteAndMatchStyle');
161 },
162 '<div contenteditable>FOO|</div>',
163 'set HTML fragment and text to clipboard and pasteAndMatchStyle');
164 }, 'selection.setClipboardData');
136 </script> 165 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/editing/assert_selection.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698