OLD | NEW |
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 Loading... |
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> |
OLD | NEW |