blob: 5c798ef1bd0bc5872cdbac4fbbec39c4ba571fad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
This tests pasting text into a table cell. The last bit of content in the incoming fragment should be merged with the paragraph after the position being pasted into.
Before insertion:
| <tbody>
| <tr>
| <td>
| <div>
| id="test2"
| "Item 1"
| <td>
| "Item 2"
After insertion:
| <tbody>
| <tr>
| <td>
| <div>
| id="test2"
| "Item foo"
| <div>
| id="test2"
| "bar<#selection-caret>1"
| <td>
| "Item 2"
|