Source/WebCore/ChangeLog

 12011-06-07 una sabovic <una.sabovic@palm.com>
 2
 3 Reviewed by NOBODY (OOPS!).
 4
 5 Setting innerText to an empty string on editable div loses focus
 6 https://bugs.webkit.org/show_bug.cgi?id=62092
 7
 8 When selection start or end node is being deleted do not clear the selection.
 9 Instead update the start/end position to an equivalent parent-anchored positions.
 10
 11 Test: fast/dom/HTMLElement/editable-div-clear-on-keydown.html
 12
 13 * dom/Position.cpp:
 14 (WebCore::Position::nodeWillBeRemoved):
 15 * dom/Position.h:
 16 * editing/DeleteSelectionCommand.cpp:
 17 (WebCore::DeleteSelectionCommand::removeNode):
 18 * editing/FrameSelection.cpp:
 19 (WebCore::FrameSelection::respondToNodeModification):
 20
1212011-06-07 Sheriff Bot <webkit.review.bot@gmail.com>
222
323 Unreviewed, rolling out r88259 and r88263.
88265

Source/WebCore/dom/Position.cpp

@@Node* Position::computeNodeAfterPosition
215215 return 0;
216216}
217217
 218void Position::nodeWillBeRemoved(Node* node)
 219{
 220 if (!m_anchorNode)
 221 return;
 222 switch (anchorType()) {
 223 case Position::PositionIsOffsetInAnchor:
 224 if (containerNode() == node->parentNode() && static_cast<unsigned>(m_offset) > node->nodeIndex())
 225 moveToOffset(m_offset - 1);
 226 else if (node->contains(containerNode()))
 227 *this = positionInParentBeforeNode(node);
 228 break;
 229 case Position::PositionIsAfterAnchor:
 230 if (node->contains(anchorNode()))
 231 *this = positionInParentAfterNode(node);
 232 break;
 233 case Position::PositionIsBeforeAnchor:
 234 if (node->contains(anchorNode()))
 235 *this = positionInParentBeforeNode(node);
 236 break;
 237 }
 238}
 239
218240Position::AnchorType Position::anchorTypeForLegacyEditingPosition(Node* anchorNode, int offset)
219241{
220242 if (anchorNode && editingIgnoresContent(anchorNode)) {
88247

Source/WebCore/dom/Position.h

@@public:
101101 Node* computeNodeBeforePosition() const;
102102 Node* computeNodeAfterPosition() const;
103103
 104 // Updates the anchor node when it is about to be deleted.
 105 void nodeWillBeRemoved(Node* node);
 106
104107 Node* anchorNode() const { return m_anchorNode.get(); }
105108
106109 // FIXME: Callers should be moved off of node(), node() is not always the container for this position.
88247

Source/WebCore/editing/DeleteSelectionCommand.cpp

@@bool DeleteSelectionCommand::handleSpeci
314314 return false;
315315}
316316
317 static void updatePositionForNodeRemoval(Node* node, Position& position)
318 {
319  if (position.isNull())
320  return;
321  switch (position.anchorType()) {
322  case Position::PositionIsOffsetInAnchor:
323  if (position.containerNode() == node->parentNode() && static_cast<unsigned>(position.offsetInContainerNode()) > node->nodeIndex())
324  position.moveToOffset(position.offsetInContainerNode() - 1);
325  else if (node->contains(position.containerNode()))
326  position = positionInParentBeforeNode(node);
327  break;
328  case Position::PositionIsAfterAnchor:
329  if (node->contains(position.anchorNode()))
330  position = positionInParentAfterNode(node);
331  break;
332  case Position::PositionIsBeforeAnchor:
333  if (node->contains(position.anchorNode()))
334  position = positionInParentBeforeNode(node);
335  break;
336  }
337 }
338 
339317static Position firstEditablePositionInNode(Node* node)
340318{
341319 ASSERT(node);

@@void DeleteSelectionCommand::removeNode(
399377 m_needPlaceholder = true;
400378
401379 // FIXME: Update the endpoints of the range being deleted.
402  updatePositionForNodeRemoval(node.get(), m_endingPosition);
403  updatePositionForNodeRemoval(node.get(), m_leadingWhitespace);
404  updatePositionForNodeRemoval(node.get(), m_trailingWhitespace);
405 
 380 m_endingPosition.nodeWillBeRemoved(node.get());
 381 m_leadingWhitespace.nodeWillBeRemoved(node.get());
 382 m_trailingWhitespace.nodeWillBeRemoved(node.get());
 383
406384 CompositeEditCommand::removeNode(node);
407385}
408386
88247

Source/WebCore/editing/FrameSelection.cpp

@@void FrameSelection::respondToNodeModifi
281281 bool clearDOMTreeSelection = false;
282282
283283 if (startRemoved || endRemoved) {
284  // FIXME: When endpoints are removed, we should just alter the selection, instead of blowing it away.
285  clearRenderTreeSelection = true;
286  clearDOMTreeSelection = true;
 284 // When endpoints are removed move the selection to valid anchor nodes.
 285 Position start = m_selection.start();
 286 Position end = m_selection.end();
 287 if (startRemoved)
 288 start.nodeWillBeRemoved(node);
 289 if (endRemoved)
 290 end.nodeWillBeRemoved(node);
 291
 292 if (start.isNotNull() && end.isNotNull()) {
 293 if (m_selection.isBaseFirst())
 294 m_selection.setWithoutValidation(start, end);
 295 else
 296 m_selection.setWithoutValidation(end, start);
 297 } else {
 298 clearRenderTreeSelection = true;
 299 clearDOMTreeSelection = true;
 300 }
287301 } else if (baseRemoved || extentRemoved) {
288302 // The base and/or extent are about to be removed, but the start and end aren't.
289303 // Change the base and extent to the start and end, but don't re-validate the
88247

LayoutTests/ChangeLog

 12011-06-07 una sabovic <una.sabovic@palm.com>
 2
 3 Reviewed by NOBODY (OOPS!).
 4
 5 Setting innerText to an empty string on editable div loses focus
 6 https://bugs.webkit.org/show_bug.cgi?id=62092
 7
 8 Added test to make sure that caret is still present in a focused editable div after its text is deleted.
 9 Updated editing tests to not expect that deleting selection start or end node will clear the selection.
 10
 11 * editing/deleting/5546763-expected.txt:
 12 * editing/deleting/delete-4038408-fix-expected.txt:
 13 * editing/deleting/delete-all-text-in-text-field-assertion-expected.txt:
 14 * editing/deleting/delete-br-011-expected.txt:
 15 * editing/deleting/delete-by-word-001-expected.txt:
 16 * editing/deleting/pruning-after-merge-1-expected.txt:
 17 * editing/execCommand/4920488-expected.txt:
 18 * editing/execCommand/createLink-expected.txt:
 19 * editing/execCommand/format-block-expected.txt:
 20 * editing/execCommand/format-block-multiple-paragraphs-in-pre-expected.txt:
 21 * editing/execCommand/format-block-with-braces-expected.txt:
 22 * editing/execCommand/hilitecolor-expected.txt:
 23 * editing/execCommand/indent-nested-lists-1-expected.txt:
 24 * editing/execCommand/indent-nested-lists-2-expected.txt:
 25 * editing/execCommand/indent-nested-lists-3-expected.txt:
 26 * editing/execCommand/indent-nested-lists-4-expected.txt:
 27 * editing/execCommand/indent-nested-lists-5-expected.txt:
 28 * editing/execCommand/indent-nested-lists-6-expected.txt:
 29 * editing/execCommand/indent-nested-lists-7-expected.txt:
 30 * editing/execCommand/indent-paragraphs-expected.txt:
 31 * editing/execCommand/indent-with-style-expected.txt:
 32 * editing/execCommand/insertHTML-expected.txt:
 33 * editing/execCommand/outdent-nested-lists-1-expected.txt:
 34 * editing/execCommand/outdent-nested-lists-2-expected.txt:
 35 * editing/execCommand/outdent-nested-lists-3-expected.txt:
 36 * editing/execCommand/outdent-nested-lists-4-expected.txt:
 37 * editing/execCommand/queryCommandState-01-expected.txt:
 38 * editing/execCommand/remove-formatting-2-expected.txt:
 39 * editing/execCommand/remove-formatting-expected.txt:
 40 * editing/execCommand/remove-list-1-expected.txt:
 41 * editing/execCommand/remove-list-items-expected.txt:
 42 * editing/execCommand/switch-list-type-expected.txt:
 43 * editing/execCommand/unlink-expected.txt:
 44 * editing/inserting/insert-div-021-expected.txt:
 45 * editing/inserting/insert-paragraph-at-end-of-line-expected.txt:
 46 * editing/pasteboard/4242293-1-expected.txt:
 47 * editing/pasteboard/5065605-expected.txt:
 48 * editing/pasteboard/copy-text-with-backgroundcolor-expected.txt:
 49 * editing/pasteboard/insert-div-text-into-text-expected.txt:
 50 * editing/pasteboard/interchange-newline-1-expected.txt:
 51 * editing/pasteboard/interchange-newline-3-expected.txt:
 52 * editing/pasteboard/interchange-newline-4-expected.txt:
 53 * editing/pasteboard/merge-end-2-expected.txt:
 54 * editing/pasteboard/merge-end-3-expected.txt:
 55 * editing/pasteboard/merge-end-4-expected.txt:
 56 * editing/pasteboard/merge-end-5-expected.txt:
 57 * editing/pasteboard/paste-list-001-expected.txt:
 58 * editing/pasteboard/paste-table-001-expected.txt:
 59 * editing/pasteboard/paste-table-002-expected.txt:
 60 * editing/pasteboard/paste-text-001-expected.txt:
 61 * editing/pasteboard/paste-text-011-expected.txt:
 62 * editing/pasteboard/paste-text-at-tabspan-001-expected.txt:
 63 * editing/pasteboard/paste-text-at-tabspan-002-expected.txt:
 64 * editing/pasteboard/paste-text-with-style-expected.txt:
 65 * editing/pasteboard/select-element-1-expected.txt:
 66 * editing/pasteboard/smart-paste-003-expected.txt:
 67 * editing/pasteboard/smart-paste-004-expected.txt:
 68 * editing/pasteboard/smart-paste-005-expected.txt:
 69 * editing/pasteboard/smart-paste-006-expected.txt:
 70 * editing/selection/5497643-expected.txt:
 71 * editing/selection/character-data-mutation-expected.txt:
 72 * editing/style/remove-underline-from-stylesheet-expected.txt:
 73 * editing/style/typing-style-003-expected.txt:
 74 * editing/undo/redo-style-expected.txt:
 75 * editing/undo/undo-indent-expected.txt:
 76 * fast/dom/HTMLElement/editable-div-clear-on-keydown-expected.txt: Added.
 77 * fast/dom/HTMLElement/editable-div-clear-on-keydown.html: Added.
 78 * platform/qt/editing/deleting/4845371-expected.txt:
 79 * platform/qt/editing/deleting/delete-3775172-fix-expected.txt:
 80 * platform/qt/editing/deleting/delete-3857753-fix-expected.txt:
 81 * platform/qt/editing/deleting/delete-3865854-fix-expected.txt:
 82 * platform/qt/editing/deleting/delete-3928305-fix-expected.txt:
 83 * platform/qt/editing/deleting/delete-3959464-fix-expected.txt:
 84 * platform/qt/editing/deleting/delete-after-span-ws-002-expected.txt:
 85 * platform/qt/editing/deleting/delete-after-span-ws-003-expected.txt:
 86 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-001-expected.txt:
 87 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-002-expected.txt:
 88 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-003-expected.txt:
 89 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-004-expected.txt:
 90 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-005-expected.txt:
 91 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-006-expected.txt:
 92 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-007-expected.txt:
 93 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-009-expected.txt:
 94 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-010-expected.txt:
 95 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-011-expected.txt:
 96 * platform/qt/editing/deleting/delete-block-contents-001-expected.txt:
 97 * platform/qt/editing/deleting/delete-block-contents-002-expected.txt:
 98 * platform/qt/editing/deleting/delete-block-contents-003-expected.txt:
 99 * platform/qt/editing/deleting/delete-block-merge-contents-001-expected.txt:
 100 * platform/qt/editing/deleting/delete-block-merge-contents-002-expected.txt:
 101 * platform/qt/editing/deleting/delete-block-merge-contents-003-expected.txt:
 102 * platform/qt/editing/deleting/delete-block-merge-contents-004-expected.txt:
 103 * platform/qt/editing/deleting/delete-block-merge-contents-005-expected.txt:
 104 * platform/qt/editing/deleting/delete-block-merge-contents-006-expected.txt:
 105 * platform/qt/editing/deleting/delete-block-merge-contents-007-expected.txt:
 106 * platform/qt/editing/deleting/delete-block-merge-contents-008-expected.txt:
 107 * platform/qt/editing/deleting/delete-block-merge-contents-009-expected.txt:
 108 * platform/qt/editing/deleting/delete-block-merge-contents-010-expected.txt:
 109 * platform/qt/editing/deleting/delete-block-merge-contents-012-expected.txt:
 110 * platform/qt/editing/deleting/delete-block-merge-contents-013-expected.txt:
 111 * platform/qt/editing/deleting/delete-block-merge-contents-014-expected.txt:
 112 * platform/qt/editing/deleting/delete-block-merge-contents-015-expected.txt:
 113 * platform/qt/editing/deleting/delete-block-merge-contents-016-expected.txt:
 114 * platform/qt/editing/deleting/delete-block-merge-contents-017-expected.txt:
 115 * platform/qt/editing/deleting/delete-block-merge-contents-019-expected.txt:
 116 * platform/qt/editing/deleting/delete-block-merge-contents-020-expected.txt:
 117 * platform/qt/editing/deleting/delete-block-merge-contents-023-expected.txt:
 118 * platform/qt/editing/deleting/delete-block-merge-contents-024-expected.txt:
 119 * platform/qt/editing/deleting/delete-br-008-expected.txt:
 120 * platform/qt/editing/deleting/delete-br-010-expected.txt:
 121 * platform/qt/editing/deleting/delete-first-list-item-expected.txt:
 122 * platform/qt/editing/deleting/delete-image-001-expected.txt:
 123 * platform/qt/editing/deleting/delete-image-002-expected.txt:
 124 * platform/qt/editing/deleting/delete-image-003-expected.txt:
 125 * platform/qt/editing/deleting/delete-image-004-expected.txt:
 126 * platform/qt/editing/deleting/delete-line-001-expected.txt:
 127 * platform/qt/editing/deleting/delete-line-002-expected.txt:
 128 * platform/qt/editing/deleting/delete-line-003-expected.txt:
 129 * platform/qt/editing/deleting/delete-line-004-expected.txt:
 130 * platform/qt/editing/deleting/delete-line-005-expected.txt:
 131 * platform/qt/editing/deleting/delete-line-006-expected.txt:
 132 * platform/qt/editing/deleting/delete-line-007-expected.txt:
 133 * platform/qt/editing/deleting/delete-line-008-expected.txt:
 134 * platform/qt/editing/deleting/delete-line-009-expected.txt:
 135 * platform/qt/editing/deleting/delete-line-010-expected.txt:
 136 * platform/qt/editing/deleting/delete-line-012-expected.txt:
 137 * platform/qt/editing/deleting/delete-line-013-expected.txt:
 138 * platform/qt/editing/deleting/delete-line-014-expected.txt:
 139 * platform/qt/editing/deleting/delete-line-015-expected.txt:
 140 * platform/qt/editing/deleting/delete-line-016-expected.txt:
 141 * platform/qt/editing/deleting/delete-line-017-expected.txt:
 142 * platform/qt/editing/deleting/delete-select-all-002-expected.txt:
 143 * platform/qt/editing/deleting/delete-select-all-003-expected.txt:
 144 * platform/qt/editing/deleting/delete-to-end-of-paragraph-expected.txt:
 145 * platform/qt/editing/deleting/list-item-1-expected.txt:
 146 * platform/qt/editing/deleting/merge-different-styles-expected.txt:
 147 * platform/qt/editing/deleting/merge-endOfParagraph-expected.txt:
 148 * platform/qt/editing/deleting/merge-no-br-expected.txt:
 149 * platform/qt/editing/deleting/non-smart-delete-expected.txt:
 150 * platform/qt/editing/deleting/pruning-after-merge-2-expected.txt:
 151 * platform/qt/editing/deleting/smart-delete-001-expected.txt:
 152 * platform/qt/editing/deleting/smart-delete-003-expected.txt:
 153 * platform/qt/editing/deleting/smart-delete-004-expected.txt:
 154 * platform/qt/editing/deleting/table-cells-expected.txt:
 155 * platform/qt/editing/execCommand/4641880-1-expected.txt:
 156 * platform/qt/editing/execCommand/4641880-2-expected.txt:
 157 * platform/qt/editing/execCommand/create-list-with-hr-expected.txt:
 158 * platform/qt/editing/execCommand/format-block-with-trailing-br-expected.txt:
 159 * platform/qt/editing/execCommand/indent-list-item-expected.txt:
 160 * platform/qt/editing/execCommand/indent-selection-expected.txt:
 161 * platform/qt/editing/execCommand/insert-list-and-stitch-expected.txt:
 162 * platform/qt/editing/execCommand/insertHorizontalRule-expected.txt:
 163 * platform/qt/editing/execCommand/nsresponder-indent-expected.txt:
 164 * platform/qt/editing/execCommand/nsresponder-outdent-expected.txt:
 165 * platform/qt/editing/execCommand/remove-list-from-range-selection-expected.txt:
 166 * platform/qt/editing/execCommand/remove-list-item-1-expected.txt:
 167 * platform/qt/editing/input/emacs-ctrl-o-expected.txt:
 168 * platform/qt/editing/inserting/insert-3654864-fix-expected.txt:
 169 * platform/qt/editing/inserting/insert-3775316-fix-expected.txt:
 170 * platform/qt/editing/inserting/insert-3851164-fix-expected.txt:
 171 * platform/qt/editing/inserting/insert-after-delete-001-expected.txt:
 172 * platform/qt/editing/inserting/insert-at-end-01-expected.txt:
 173 * platform/qt/editing/inserting/insert-at-end-02-expected.txt:
 174 * platform/qt/editing/inserting/insert-br-001-expected.txt:
 175 * platform/qt/editing/inserting/insert-br-005-expected.txt:
 176 * platform/qt/editing/inserting/insert-div-001-expected.txt:
 177 * platform/qt/editing/inserting/insert-div-002-expected.txt:
 178 * platform/qt/editing/inserting/insert-div-003-expected.txt:
 179 * platform/qt/editing/inserting/insert-div-005-expected.txt:
 180 * platform/qt/editing/inserting/insert-div-007-expected.txt:
 181 * platform/qt/editing/inserting/insert-div-009-expected.txt:
 182 * platform/qt/editing/inserting/insert-div-010-expected.txt:
 183 * platform/qt/editing/inserting/insert-div-020-expected.txt:
 184 * platform/qt/editing/inserting/insert-div-023-expected.txt:
 185 * platform/qt/editing/inserting/insert-div-024-expected.txt:
 186 * platform/qt/editing/inserting/insert-div-025-expected.txt:
 187 * platform/qt/editing/inserting/insert-div-026-expected.txt:
 188 * platform/qt/editing/inserting/multiple-lines-selected-expected.txt:
 189 * platform/qt/editing/inserting/paragraph-separator-03-expected.txt:
 190 * platform/qt/editing/inserting/paragraph-separator-in-table-2-expected.txt:
 191 * platform/qt/editing/inserting/redo-expected.txt:
 192 * platform/qt/editing/inserting/return-key-with-selection-001-expected.txt:
 193 * platform/qt/editing/inserting/return-key-with-selection-002-expected.txt:
 194 * platform/qt/editing/inserting/return-key-with-selection-003-expected.txt:
 195 * platform/qt/editing/pasteboard/3976872-expected.txt:
 196 * platform/qt/editing/pasteboard/4076267-3-expected.txt:
 197 * platform/qt/editing/pasteboard/4076267-expected.txt:
 198 * platform/qt/editing/pasteboard/8145-3-expected.txt:
 199 * platform/qt/editing/pasteboard/block-wrappers-necessary-expected.txt:
 200 * platform/qt/editing/pasteboard/displaced-generic-placeholder-expected.txt:
 201 * platform/qt/editing/pasteboard/displaced-placeholder-expected.txt:
 202 * platform/qt/editing/pasteboard/merge-after-delete-1-expected.txt:
 203 * platform/qt/editing/pasteboard/merge-after-delete-2-expected.txt:
 204 * platform/qt/editing/pasteboard/merge-after-delete-expected.txt:
 205 * platform/qt/editing/pasteboard/merge-end-blockquote-expected.txt:
 206 * platform/qt/editing/pasteboard/merge-end-list-expected.txt:
 207 * platform/qt/editing/pasteboard/merge-end-table-expected.txt:
 208 * platform/qt/editing/pasteboard/nested-blocks-with-text-area-expected.txt:
 209 * platform/qt/editing/pasteboard/nested-blocks-with-text-field-expected.txt:
 210 * platform/qt/editing/pasteboard/paste-4035648-fix-expected.txt:
 211 * platform/qt/editing/pasteboard/paste-line-endings-001-expected.txt:
 212 * platform/qt/editing/pasteboard/paste-line-endings-006-expected.txt:
 213 * platform/qt/editing/pasteboard/paste-match-style-001-expected.txt:
 214 * platform/qt/editing/pasteboard/paste-match-style-002-expected.txt:
 215 * platform/qt/editing/pasteboard/paste-table-003-expected.txt:
 216 * platform/qt/editing/pasteboard/paste-table-cells-expected.txt:
 217 * platform/qt/editing/pasteboard/paste-text-006-expected.txt:
 218 * platform/qt/editing/pasteboard/paste-text-007-expected.txt:
 219 * platform/qt/editing/pasteboard/paste-text-010-expected.txt:
 220 * platform/qt/editing/pasteboard/paste-text-015-expected.txt:
 221 * platform/qt/editing/pasteboard/paste-text-016-expected.txt:
 222 * platform/qt/editing/pasteboard/paste-text-017-expected.txt:
 223 * platform/qt/editing/pasteboard/paste-text-018-expected.txt:
 224 * platform/qt/editing/pasteboard/prevent-block-nesting-01-expected.txt:
 225 * platform/qt/editing/pasteboard/smart-paste-007-expected.txt:
 226 * platform/qt/editing/pasteboard/smart-paste-008-expected.txt:
 227 * platform/qt/editing/pasteboard/testcase-9507-expected.txt:
 228 * platform/qt/editing/pasteboard/undoable-fragment-removes-expected.txt:
 229 * platform/qt/editing/selection/node-removal-1-expected.txt:
 230 * platform/qt/editing/selection/node-removal-2-expected.txt:
 231 * platform/qt/editing/selection/select-all-iframe-expected.txt:
 232 * platform/qt/editing/style/create-block-for-style-001-expected.txt:
 233 * platform/qt/editing/style/create-block-for-style-002-expected.txt:
 234 * platform/qt/editing/style/create-block-for-style-003-expected.txt:
 235 * platform/qt/editing/style/create-block-for-style-004-expected.txt:
 236 * platform/qt/editing/style/create-block-for-style-007-expected.txt:
 237 * platform/qt/editing/style/create-block-for-style-009-expected.txt:
 238 * platform/qt/editing/style/create-block-for-style-010-expected.txt:
 239 * platform/qt/editing/style/create-block-for-style-011-expected.txt:
 240 * platform/qt/editing/style/create-block-for-style-012-expected.txt:
 241 * platform/qt/editing/style/create-block-for-style-013-expected.txt:
 242 * platform/qt/editing/style/relative-font-size-change-001-expected.txt:
 243 * platform/qt/editing/style/relative-font-size-change-002-expected.txt:
 244 * platform/qt/editing/style/smoosh-styles-001-expected.txt:
 245 * platform/qt/editing/style/smoosh-styles-003-expected.txt:
 246 * platform/qt/editing/style/style-3998892-fix-expected.txt:
 247 * platform/qt/editing/style/style-boundary-001-expected.txt:
 248 * platform/qt/editing/style/style-boundary-004-expected.txt:
 249 * platform/qt/fast/dynamic/move-node-with-selection-expected.txt:
 250 * platform/qt/svg/custom/use-clipped-hit-expected.txt:
 251
12522011-06-07 Mario Sanchez Prada <msanchez@igalia.com>
2253
3254 Unreviewed, skip test crashing in GTK bots because of an ASSERT.
88265

LayoutTests/editing/deleting/5546763-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > A > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > A > DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211This tests for a crash when deleting a selection that starts before the first child of a block and ends after the last child (which must be a link) of another block. There shouldn't be any content in the editable region below.
88247

LayoutTests/editing/deleting/delete-4038408-fix-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 8 of BLOCKQUOTE > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1715EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 6 of BLOCKQUOTE > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2017EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2118EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2219EDITING DELEGATE: shouldDeleteDOMRange:range from 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 0 of DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 4 of BLOCKQUOTE > DIV > DIV > BODY > HTML > #document toDOMRange:range from 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2521EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2622EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2723EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document to 35 of #text > DIV > BLOCKQUOTE > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2824EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2925EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
30 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
31 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 31 of #text > DIV > DIV > BODY > HTML > #document to 31 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 31 of #text > DIV > DIV > BODY > HTML > #document to 31 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 31 of #text > DIV > DIV > BODY > HTML > #document to 31 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3227EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3328EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3529EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
3630rdar://problems/4038408&4154187&4125087&4125381, This tests deletion from underneath quoted text:
3731
88247

LayoutTests/editing/deleting/delete-all-text-in-text-field-assertion-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > #shadow-root to 1 of #text > DIV > #shadow-root toDOMRange:range from 0 of #text > DIV > #shadow-root to 1 of #text > DIV > #shadow-root affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
33EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > #shadow-root to 1 of #text > DIV > #shadow-root
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > #shadow-root to 0 of DIV > #shadow-root affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > #shadow-root to 0 of DIV > #shadow-root toDOMRange:range from 0 of DIV > #shadow-root to 0 of DIV > #shadow-root affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98Bug 9358: REGRESSION: Assertion failure in HTMLInputElement::setValueFromRenderer (value == constrainValue(value)) when deleting all text
88247

LayoutTests/editing/deleting/delete-br-011-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > BODY > HTML > #document to 2 of BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119rdar://problem/4065343 Mail: Deleting a line sometimes makes the insertion point jump to the top of the message.
1210
1311before deletion:
88247

LayoutTests/editing/deleting/delete-by-word-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/editing/deleting/pruning-after-merge-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > B > DIV > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > B > SPAN > B > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211This tests the pruning that delete does when the it merges two paragraphs when the selection to delete spans multiple blocks.
88247

LayoutTests/editing/execCommand/4920488-expected.txt

@@After removeFormat:
77| "food<#selection-focus>"
88
99After extractContents():
10 | ""
 10| "<#selection-anchor>"
1111| <a>
1212| href="http://www.google.com/"
 13| <#selection-focus>
88247

LayoutTests/editing/execCommand/createLink-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > A > DIV > LI > OL > BODY > HTML > #document to 95 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 95 of #text > A > DIV > LI > OL > BODY > HTML > #document to 95 of #text > A > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > A > DIV > LI > OL > BODY > HTML > #document to 95 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98EDITING DELEGATE: shouldEndEditingInDOMRange:range from 0 of DIV > LI > OL > BODY > HTML > #document to 1 of DIV > LI > OL > BODY > HTML > #document

@@EDITING DELEGATE: shouldBeginEditingInDO
2423EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
2524EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2625EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > A > DIV > LI > OL > BODY > HTML > #document to 121 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 121 of #text > A > DIV > LI > OL > BODY > HTML > #document to 121 of #text > A > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > A > DIV > LI > OL > BODY > HTML > #document to 121 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2927EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3028EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3129EDITING DELEGATE: shouldEndEditingInDOMRange:range from 0 of DIV > LI > OL > BODY > HTML > #document to 3 of DIV > LI > OL > BODY > HTML > #document

@@EDITING DELEGATE: webViewDidBeginEditing
3533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3634EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > LI > OL > BODY > HTML > #document to 0 of P > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3735EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
39 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > A > P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 36EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > A > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > A > P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4037EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4138EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4239This is a test of execCommand(CreateLink, ...). It tests:
88247

LayoutTests/editing/execCommand/format-block-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 11 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of H1 > DIV > DIV > BODY > HTML > #document to 0 of H1 > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of H1 > DIV > DIV > BODY > HTML > #document to 0 of H1 > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1513EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1815This test uses FormatBlock to modify three of the paragraphs below
1916
88247

LayoutTests/editing/execCommand/format-block-multiple-paragraphs-in-pre-expected.txt

@@Formatting all but the first paragraph b
7171| "
7272"
7373| "webkit"
 74| <#selection-caret>
7475| "
7576"
88247

LayoutTests/editing/execCommand/format-block-with-braces-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of H1 > DIV > BODY > HTML > #document to 0 of H1 > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of H1 > DIV > BODY > HTML > #document to 0 of H1 > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
97EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
108This test uses FormatBlock with html brackets in the tag string passed to execCommand.
119
88247

LayoutTests/editing/execCommand/hilitecolor-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1514| "<#selection-caret>The "
1615| <span>
88247

LayoutTests/editing/execCommand/indent-nested-lists-1-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 9 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 7 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests indenting "three". You should see numbers 1 and 2 before "three" and "four" respectively.
88247

LayoutTests/editing/execCommand/indent-nested-lists-2-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 9 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests indenting "three". You should see numbers 1 and 2 before "two" and "three" respectively.
88247

LayoutTests/editing/execCommand/indent-nested-lists-3-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 6 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests indenting "three". You should see 1, 2, and 3 before "two", "three", and "four" respectively.
88247

LayoutTests/editing/execCommand/indent-nested-lists-4-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 4 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 7 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 4 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88This tests indenting "three" and "four". You should see 1 through 4 in order before numbers "two" through "five".
88247

LayoutTests/editing/execCommand/indent-nested-lists-5-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 9 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 0 of LI > UL > OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests indenting "three". You should see 1, 2, and then a bullet before numbers "two", "three", and "four" respectively.
88247

LayoutTests/editing/execCommand/indent-nested-lists-6-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 9 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 7 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests indenting "three". You should see a bullet then 1 and 2 before numbers "two", "three", and "four" respectively.
88247

LayoutTests/editing/execCommand/indent-nested-lists-7-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 4 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 8 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 4 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88This tests indenting "three" and "four". You should see 1 before "two", "three", and "five" but 2 before "four". Neither "two" nor "five" should be the part of new nested list since there is text between "two" and "three", and "five" is unordered.
88247

LayoutTests/editing/execCommand/indent-paragraphs-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 6 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 6 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109This tests indenting three paragraphs with different hierarchies.
88247

LayoutTests/editing/execCommand/indent-with-style-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 9 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of DIV > BODY > HTML > #document to 5 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests indenting two and three. You should see two and three indented and with the same background color as one and four.
88247

LayoutTests/editing/execCommand/insertHTML-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513This is a test of execCommand(insertHTML, ...). The contents of the editable div below should be the same before and after the test.
88247

LayoutTests/editing/execCommand/outdent-nested-lists-1-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of OL > OL > DIV > BODY > HTML > #document to 2 of OL > OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98This tests outdenting "three". You should see 2 and 3 before "three" and "four" respectively.
88247

LayoutTests/editing/execCommand/outdent-nested-lists-2-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 5 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 3 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > OL > DIV > BODY > HTML > #document to 0 of LI > OL > OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 3 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests outdenting "one". You see 1 before "one" but 1 and 2 before "two" and "three" respectively.
88247

LayoutTests/editing/execCommand/outdent-nested-lists-3-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 5 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 3 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > OL > DIV > BODY > HTML > #document to 0 of LI > OL > OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 3 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87This tests outdenting "two". You should see 1 before "one", "two", and "three" but 2 before "four".
88247

LayoutTests/editing/execCommand/outdent-nested-lists-4-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 4 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of OL > OL > DIV > BODY > HTML > #document to 6 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 4 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88This tests outdenting ordered lists that contains an unordered-list. You should see 1 through 3 before numbers "two" through "four".
88247

LayoutTests/editing/execCommand/queryCommandState-01-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
108EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1411EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1512EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1613This tests queryCommandState for InsertUnorderedList and InsertOrderedList.
88247

LayoutTests/editing/execCommand/remove-formatting-2-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
108EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
119This tests that RemoveFormat not only removes style from the selected part of the DOM, but that it also applies the document default style to the selection if that's necessary in order to leave the selected text unstyled.
1210| "<#selection-anchor>This<#selection-focus>"
88247

LayoutTests/editing/execCommand/remove-formatting-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > B > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > A > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1210This is a test for execCommand("RemoveFormat"). It demonstrates a bug: everything in the editable region below should be selected, as everything was selected before Remove Format was performed.
1311
88247

LayoutTests/editing/execCommand/remove-list-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > OL > DIV > BODY > HTML > #document to 60 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 60 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 60 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1111This tests de-listing content.
88247

LayoutTests/editing/execCommand/remove-list-items-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 7 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of SPAN > DIV > BODY > HTML > #document to 0 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 0 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of SPAN > DIV > BODY > HTML > #document to 0 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 0 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 0 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1815EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 29 of #text > DIV > BODY > HTML > #document to 29 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2319EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 15 of DIV > BODY > HTML > #document to 15 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of DIV > BODY > HTML > #document to 15 of DIV > BODY > HTML > #document toDOMRange:range from 15 of DIV > BODY > HTML > #document to 15 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2621EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2722EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2823This test checks to see that Insert{Un}OrderedList can remove items from a list, can remove empty list when they are emptied, and can remove content from orphaned list items.
88247

LayoutTests/editing/execCommand/switch-list-type-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 5 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > SPAN > DIV > BODY > HTML > #document to 0 of LI > UL > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 0 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > SPAN > DIV > BODY > HTML > #document to 0 of LI > UL > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 0 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 0 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1815EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of DIV > BODY > HTML > #document to 10 of DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2319This test checks to see if InsertOrderedList can switch the list type of list items.
88247

LayoutTests/editing/execCommand/unlink-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > LI > OL > BODY > HTML > #document to 45 of #text > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 45 of #text > DIV > LI > OL > BODY > HTML > #document to 45 of #text > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > LI > OL > BODY > HTML > #document to 45 of #text > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98EDITING DELEGATE: shouldEndEditingInDOMRange:range from 0 of DIV > LI > OL > BODY > HTML > #document to 1 of DIV > LI > OL > BODY > HTML > #document

@@EDITING DELEGATE: shouldBeginEditingInDO
2423EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
2524EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2625EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > DIV > LI > OL > BODY > HTML > #document to 87 of #text > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > LI > OL > BODY > HTML > #document to 87 of #text > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > LI > OL > BODY > HTML > #document to 87 of #text > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2927EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3028EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3129EDITING DELEGATE: shouldEndEditingInDOMRange:range from 0 of DIV > LI > OL > BODY > HTML > #document to 4 of DIV > LI > OL > BODY > HTML > #document

@@EDITING DELEGATE: webViewDidBeginEditing
3533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3634EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > LI > OL > BODY > HTML > #document to 0 of P > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3735EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
39 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > A > P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 36EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > A > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > A > P > DIV > LI > OL > BODY > HTML > #document to 10 of #text > A > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4037EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4138EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4239EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
43 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > P > DIV > LI > OL > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 40EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of P > DIV > LI > OL > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > LI > OL > BODY > HTML > #document toDOMRange:range from 0 of #text > P > DIV > LI > OL > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > LI > OL > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4541EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4642EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4743This is a test of execCommand("Unlink"). It tests:
88247

LayoutTests/editing/inserting/insert-div-021-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1616EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1717EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1818EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2019EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
2120Test inserting paragraphs: should see "foo", then an empty line, then "bar" in the next line.
2221Fix for this bug: <rdar://problem/3924579> REGRESSION (Mail): After deleting, hitting return key does not insert visible newline
88247

LayoutTests/editing/inserting/insert-paragraph-at-end-of-line-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
99EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1413This tests the fix for <rdar://problem/6633727> - Hitting return at the end of a line with an anchor jumps me to the bottom of the message.
1514If the test has passed, the numbers should be in order, and only "1" should be a link.
88247

LayoutTests/editing/pasteboard/4242293-1-expected.txt

@@EDITING DELEGATE: shouldInsertNode:#docu
1414EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1616EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
17 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1817EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1918This test ensures that createMarkup puts an interchange newline on the pasteboard for a selection ending at the end of a block. Both regions below should be visually identical.
2019
88247

LayoutTests/editing/pasteboard/5065605-expected.txt

1 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 24 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 1EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 24 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document toDOMRange:range from 24 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
32EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
43EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
54EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 24 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 24 of #text > DIV > DIV > BODY > HTML > #document to 24 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 24 of #text > DIV > DIV > BODY > HTML > #document to 24 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 24 of #text > DIV > DIV > BODY > HTML > #document to 24 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
108EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1210EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 24 of #text > DIV > DIV > BODY > HTML > #document to 24 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > FONT > DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > FONT > DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1815EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldChangeSelectedDO
2017EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2118EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2219EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 24 of #text > FONT > DIV > SPAN > FONT > DIV > DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > SPAN > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of FONT > DIV > DIV > BODY > HTML > #document to 1 of FONT > DIV > DIV > BODY > HTML > #document toDOMRange:range from 24 of #text > FONT > DIV > SPAN > FONT > DIV > DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > SPAN > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2521EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2622EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2823EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
2924This tests for a bug where text copied with Select All + Copy would lose its color.
3025| <font>
88247

LayoutTests/editing/pasteboard/copy-text-with-backgroundcolor-expected.txt

@@EDITING DELEGATE: shouldInsertNode:#docu
2424EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 22 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 22 of #text > SPAN > DIV > DIV > BODY > HTML > #document toDOMRange:range from 22 of #text > DIV > DIV > BODY > HTML > #document to 22 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2525EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2626EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2827EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
2928
3029Markup before:
88247

LayoutTests/editing/pasteboard/insert-div-text-into-text-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 36 of #text > DIV > BODY > HTML > #document to 36 of #text > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1412This tests inserting a text wrapped in a div inside a text node.
1513| "There "
88247

LayoutTests/editing/pasteboard/interchange-newline-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
109There is an interchange newline at the end of the incoming fragment. "bar" and "x" should be in separate paragraphs
1110The paragraph "bar" is inside a div wrapped in a span, and the old paste code that handled interchange newlines did not handle this case.
88247

LayoutTests/editing/pasteboard/interchange-newline-3-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
98This demonstrates a bug in interchange newline handling during paste.
109There is an interchange newline at the end of the incoming fragment and so the caret should end up on an empty line.
88247

LayoutTests/editing/pasteboard/interchange-newline-4-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
109This tests for a bug where pasted content starting with an interchange newline would end up
1110outside of the editable region where it was pasted. You should see 'foo\nbar' below.
88247

LayoutTests/editing/pasteboard/merge-end-2-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1211This tests the last paragraph in the pasted fragment is merged with the content after the insertion position
1312"baz" and "oobar" should be in the same paragraph below
88247

LayoutTests/editing/pasteboard/merge-end-3-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1412The last paragraph of the incoming fragment should be in the same paragraph as 'three'.
1513| "one "
88247

LayoutTests/editing/pasteboard/merge-end-4-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1110Tests for a case where paste's end merge was failing. You should see xfoo
1211bar
88247

LayoutTests/editing/pasteboard/merge-end-5-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 36 of #text > DIV > DIV > BODY > HTML > #document to 36 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 36 of #text > DIV > DIV > BODY > HTML > #document to 36 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1715Pasting a paragraph or less into a selection that spans multiple blocks should insert content into the block containing the start of the selection.
1816| <div>
88247

LayoutTests/editing/pasteboard/paste-list-001-expected.txt

@@EDITING DELEGATE: shouldInsertNode:#docu
1010EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 21 of #text > LI > OL > DIV > BODY > HTML > #document to 21 of #text > LI > OL > DIV > BODY > HTML > #document toDOMRange:range from 21 of #text > LI > OL > DIV > BODY > HTML > #document to 21 of #text > LI > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1514| "
1615"
88247

LayoutTests/editing/pasteboard/paste-table-001-expected.txt

@@EDITING DELEGATE: shouldInsertNode:#docu
4242EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of P > DIV > BODY > HTML > #document to 2 of P > DIV > BODY > HTML > #document toDOMRange:range from 32 of #text > TD > TR > TBODY > TABLE > P > DIV > BODY > HTML > #document to 32 of #text > TD > TR > TBODY > TABLE > P > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4343EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4444EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
45 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4645EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
4746| "
4847"
88247

LayoutTests/editing/pasteboard/paste-table-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1513EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1614Problem: copy/pasting some HTML including tables can give rise to a <div> element as the first child of the table element. This is invalid.
88247

LayoutTests/editing/pasteboard/paste-text-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1212EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1716
1817You should see "foo barbar baz" below:
88247

LayoutTests/editing/pasteboard/paste-text-011-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
77EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document givenAction:WebViewInsertActionPasted
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > B > FONT > P > SPAN > B > FONT > P > BODY > HTML > #document to 5 of #text > B > FONT > P > SPAN > B > FONT > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of B > FONT > P > BODY > HTML > #document to 1 of B > FONT > P > BODY > HTML > #document toDOMRange:range from 5 of #text > B > FONT > P > SPAN > B > FONT > P > BODY > HTML > #document to 5 of #text > B > FONT > P > SPAN > B > FONT > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311There was a bug when pasting at the end of the block.
1412The content was inserted at the start of the block instead of the end. This tests the insert-at-end case.
1513| "
88247

LayoutTests/editing/pasteboard/paste-text-at-tabspan-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1312
1413You should see aax\tz below:
88247

LayoutTests/editing/pasteboard/paste-text-at-tabspan-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1514
1615You should see a\tax\t\tz below:
88247

LayoutTests/editing/pasteboard/paste-text-with-style-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > I > B > DIV > BODY > HTML > #document to 9 of #text > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > I > B > DIV > BODY > HTML > #document to 9 of #text > FONT > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 9 of #text > FONT > DIV > DIV > BODY > HTML > #document to 9 of #text > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > FONT > DIV > DIV > BODY > HTML > #document to 9 of #text > FONT > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1311
1412Markup before:
88247

LayoutTests/editing/pasteboard/select-element-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 1 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of SPAN > DIV > BODY > HTML > #document to 1 of SPAN > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: shouldEndEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
88247

LayoutTests/editing/pasteboard/smart-paste-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312Tests:
88247

LayoutTests/editing/pasteboard/smart-paste-004-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514Tests:
88247

LayoutTests/editing/pasteboard/smart-paste-005-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716Tests:
88247

LayoutTests/editing/pasteboard/smart-paste-006-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChange:WebVi
1816EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1917EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
2018EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 19EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2320EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2421EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2522Tests:
88247

LayoutTests/editing/selection/5497643-expected.txt

1 ALERT: SUCCESS: The selection was cleared.
 1ALERT: FAILURE: There shouldn't be a selection.
22This tests to make sure that a selection inside a textarea is cleared when the textarea is removed from the document. Not clearing it led to crashes.
33
44
88247

LayoutTests/editing/selection/character-data-mutation-expected.txt

11This test ensures WebKit adjusts or clears the selection when either the start or the end container was modified.
22
33Base is first:
4 PASS: Removing the parent of startContainer cleared selection
5 PASS: Replacing nodeValue of startContainer cleared selection
6 PASS: Replacing nodeValue of endContainer cleared selection
 4FAIL: Removing the parent of startContainer did not clear selection
 5FAIL: Replacing nodeValue of startContainer did not clear selection
 6FAIL: Replacing nodeValue of endContainer did not clear selection
77PASS: Appending " WebKit" to startContainer did not move selection
88PASS: Appending " WebKit" to endContainer did not move selection
99PASS: Inserting " WebKit" to startContainer before the end point moved the offset from 2 to 9
1010PASS: Inserting " WebKit" to endContainer before the end point moved the offset from 3 to 10
1111PASS: Inserting " WebKit" to startContainer after the end point did not move selection
1212PASS: Inserting " WebKit" to endContainer after the end point did not move selection
13 PASS: Removing text in startContainer containing the end point cleared selection
14 PASS: Removing text in endContainer containing the end point cleared selection
15 PASS: Removing text in startContainer containing the start point cleared selection
 13FAIL: Removing text in startContainer containing the end point did not clear selection
 14FAIL: Removing text in endContainer containing the end point did not clear selection
 15FAIL: Removing text in startContainer containing the start point did not clear selection
1616PASS: Removing text in endContainer containing the start point moved the offset from 3 to 0
1717PASS: Removing 2 characters in startContainer before the end point moved the offset from 2 to 0
1818PASS: Removing 2 characters in endContainer before the end point moved the offset from 3 to 1
19 PASS: Removing 3 characters at the beginning of startContainer cleared selection
 19FAIL: Removing 3 characters at the beginning of startContainer did not clear selection
2020PASS: Removing 3 characters at the beginning of endContainer moved the offset from 3 to 0
2121PASS: Removing text in startContainer after the end point did not move selection
2222PASS: Removing text in endContainer after the end point did not move selection
23 PASS: Replacing text in startContainer containing the end point cleared selection
24 PASS: Replacing text in endContainer containing the end point cleared selection
 23FAIL: Replacing text in startContainer containing the end point did not clear selection
 24FAIL: Replacing text in endContainer containing the end point did not clear selection
2525PASS: Replacing 2 characters in startContainer by 2 characters before the end point did not move selection
2626PASS: Replacing 2 characters in endContainer by 2 characters before the end point did not move selection
2727PASS: Replacing 2 characters in startContainer by 1 characters before the end point moved the offset from 2 to 1

@@PASS: Replacing 2 characters in startCon
3030PASS: Replacing 2 characters in endContainer by 2 characters after the end point did not move selection
3131
3232Extent is first:
33 PASS: Removing the parent of startContainer cleared selection
34 PASS: Replacing nodeValue of startContainer cleared selection
35 PASS: Replacing nodeValue of endContainer cleared selection
 33FAIL: Removing the parent of startContainer did not clear selection
 34FAIL: Replacing nodeValue of startContainer did not clear selection
 35FAIL: Replacing nodeValue of endContainer did not clear selection
3636PASS: Appending " WebKit" to startContainer did not move selection
3737PASS: Appending " WebKit" to endContainer did not move selection
3838PASS: Inserting " WebKit" to startContainer before the end point moved the offset from 2 to 9
3939PASS: Inserting " WebKit" to endContainer before the end point moved the offset from 3 to 10
4040PASS: Inserting " WebKit" to startContainer after the end point did not move selection
4141PASS: Inserting " WebKit" to endContainer after the end point did not move selection
42 PASS: Removing text in startContainer containing the end point cleared selection
43 PASS: Removing text in endContainer containing the end point cleared selection
44 PASS: Removing text in startContainer containing the start point cleared selection
 42FAIL: Removing text in startContainer containing the end point did not clear selection
 43FAIL: Removing text in endContainer containing the end point did not clear selection
 44FAIL: Removing text in startContainer containing the start point did not clear selection
4545PASS: Removing text in endContainer containing the start point moved the offset from 3 to 0
4646PASS: Removing 2 characters in startContainer before the end point moved the offset from 2 to 0
4747PASS: Removing 2 characters in endContainer before the end point moved the offset from 3 to 1
48 PASS: Removing 3 characters at the beginning of startContainer cleared selection
 48FAIL: Removing 3 characters at the beginning of startContainer did not clear selection
4949PASS: Removing 3 characters at the beginning of endContainer moved the offset from 3 to 0
5050PASS: Removing text in startContainer after the end point did not move selection
5151PASS: Removing text in endContainer after the end point did not move selection
52 PASS: Replacing text in startContainer containing the end point cleared selection
53 PASS: Replacing text in endContainer containing the end point cleared selection
 52FAIL: Replacing text in startContainer containing the end point did not clear selection
 53FAIL: Replacing text in endContainer containing the end point did not clear selection
5454PASS: Replacing 2 characters in startContainer by 2 characters before the end point did not move selection
5555PASS: Replacing 2 characters in endContainer by 2 characters before the end point did not move selection
5656PASS: Replacing 2 characters in startContainer by 1 characters before the end point moved the offset from 2 to 1
88247

LayoutTests/editing/style/remove-underline-from-stylesheet-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
9696EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9797EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9898EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
99 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10099EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
101100This tests removing underline from stylesheet (.editing has underline). Because text-decoration that comes from a style rule cannot be pushed down, the underline should stay. (see bug 27809).
102101| "xxxxxx "
88247

LayoutTests/editing/style/typing-style-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1414EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1616EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
18 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > B > DIV > BODY > HTML > #document to 1 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > BODY > HTML > #document to 1 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > B > DIV > BODY > HTML > #document to 1 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1918EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2019EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2120EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
2827EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2928EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3029EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
31 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > I > B > DIV > BODY > HTML > #document to 1 of #text > I > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 30EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > I > B > DIV > BODY > HTML > #document to 1 of #text > I > B > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > I > B > DIV > BODY > HTML > #document to 1 of #text > I > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3331EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3432EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
4240EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4341EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4442EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
45 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
46 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > I > DIV > BODY > HTML > #document to 1 of #text > I > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 43EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > I > DIV > BODY > HTML > #document to 1 of #text > I > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > I > DIV > BODY > HTML > #document to 1 of #text > I > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4744EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4845EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4946EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
5653EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5754EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5855EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
59 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
60 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 56EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6157EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6258EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6359EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/editing/undo/redo-style-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
1918EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2019EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2120EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2422EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2523EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2624EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
3028EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3129EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3230EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 31EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3532EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3633EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
37 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3935EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4036EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4137EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
42 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
43 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 38EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4439EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4540EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4641This tests applying a background color at the beginning, the middle and the end of one sentence, then undo and redo.
88247

LayoutTests/editing/undo/undo-indent-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of OL > DIV > BODY > HTML > #document to 9 of OL > DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 7 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > OL > DIV > BODY > HTML > #document to 5 of #text > LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of OL > DIV > BODY > HTML > #document to 6 of OL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > OL > DIV > BODY > HTML > #document to 0 of LI > OL > OL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
108EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1210This tests indenting "three" then undoing the indent. You should see one, two and three numbered 1 through 3 then four as a sublist with number 1.
88247

LayoutTests/fast/dom/HTMLElement/editable-div-clear-on-keydown-expected.txt

 1Tests behavior of code that clears the text from a focused editable div.
 2
 3To run manually press any key to clear the text in the div.
 4The key that was typed should replace the text in the editable div and div should still have the focus and a blinking caret.
 5
 6a
 7PASS
0

LayoutTests/fast/dom/HTMLElement/editable-div-clear-on-keydown.html

 1<!DOCTYPE HTML>
 2<html>
 3<head>
 4</head>
 5<body>
 6<p>Tests behavior of code that clears the text from a focused editable div.
 7<br><br>To run manually press any key to clear the text in the div.<br>The key that was typed should replace the text in the editable div and div should still have the focus and a blinking caret.</p>
 8<div id="it" style="-webkit-user-modify: read-write;" onkeydown="resetIt(event)" onkeypress="typedChar(event)" onkeyup="checkResult(event)">text</div>
 9<p id="result">TEST NOT RUN YET</p>
 10<script>
 11 if (window.layoutTestController)
 12 layoutTestController.dumpAsText();
 13
 14 var it = document.getElementById("it");
 15 it.focus();
 16
 17 if (window.eventSender)
 18 eventSender.keyDown("a");
 19
 20 function resetIt(event) {
 21 var it = document.getElementById("it");
 22 it.innerText = '';
 23 it.focus();
 24 }
 25
 26 var lastTypedChar = '';
 27 function typedChar(event) {
 28 lastTypedChar = String.fromCharCode(event.keyCode);
 29 }
 30
 31 function checkResult(event) {
 32 if (lastTypedChar != '') {
 33 var text = document.getElementById("it").innerText;
 34 if (text != lastTypedChar)
 35 document.getElementById("result").innerHTML = "FAIL: editable div content is '" + text + "' and it should be '" + lastTypedChar + "'" ;
 36 else
 37 document.getElementById("result").innerHTML = "PASS";
 38 }
 39 }
 40</script>
 41</body>
 42</html>
0

LayoutTests/platform/qt/editing/deleting/4845371-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 3 of #text > A > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document toDOMRange:range from 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-3775172-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > BODY > HTML > #document to 1 of #text > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document toDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-3857753-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: shouldDeleteDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 2 of #text > I > DIV > BODY > HTML > #document
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > I > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1615layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-3865854-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > I > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-3928305-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-3959464-fix-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
1313EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1515EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2019EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2120EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 4 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2422EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2523EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2624layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-after-span-ws-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 820x584
88247

LayoutTests/platform/qt/editing/deleting/delete-after-span-ws-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 820x584
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 1 of #text > P > DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 4 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 1 of #text > P > DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 1 of #text > P > DIV > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 4 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-004-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 1 of #text > P > DIV > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-005-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 7 of DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-006-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 4 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-007-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 2 of #text > P > DIV > DIV > BODY > HTML > #document
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 4 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1414layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-009-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > DIV > DIV > BODY > HTML > #document
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1414layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-010-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > DIV > BODY > HTML > #document
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1515layer at (0,0) size 784x620
88247

LayoutTests/platform/qt/editing/deleting/delete-at-paragraph-boundaries-011-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of P > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > BODY > HTML > #document to 0 of P > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > BODY > HTML > #document to 0 of P > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-contents-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 25 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 25 of #text > SPAN > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-contents-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1515EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 25 of #text > SPAN > DIV > BODY > HTML > #document
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2019layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-contents-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1515EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 25 of #text > SPAN > DIV > BODY > HTML > #document
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2019layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-004-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-005-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-006-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-007-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-008-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-009-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-010-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2018EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2220EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-012-expected.txt

@@EDITING DELEGATE: shouldDeleteDOMRange:r
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3232EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3333EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
35 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3635EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3736EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3837layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-013-expected.txt

@@EDITING DELEGATE: shouldDeleteDOMRange:r
3232EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3333EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3434EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
35 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
36 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 35EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3736EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3837EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3938layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-014-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2929EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3030EDITING DELEGATE: shouldDeleteDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3433EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3534EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3635layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-015-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2929EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3030EDITING DELEGATE: shouldDeleteDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3433EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3534EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3635layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-016-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2929EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3030EDITING DELEGATE: shouldDeleteDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3433EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3534EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3635layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-017-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2929EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3030EDITING DELEGATE: shouldDeleteDOMRange:range from 15 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3333EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3434EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3535layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-019-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 0 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-020-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > BODY > HTML > #document
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 0 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-023-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-024-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-br-008-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-br-010-expected.txt

@@EDITING DELEGATE: shouldDeleteDOMRange:r
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-first-list-item-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of UL > DIV > BODY > HTML > #document to 0 of UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
108EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1210layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-image-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of SPAN > DIV > BODY > HTML > #document to 4 of SPAN > DIV > BODY > HTML > #document
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > SPAN > DIV > BODY > HTML > #document to 11 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-image-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of SPAN > DIV > BODY > HTML > #document to 2 of SPAN > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-image-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of SPAN > DIV > BODY > HTML > #document to 3 of SPAN > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 8 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-image-004-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of SPAN > DIV > BODY > HTML > #document to 4 of SPAN > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-001-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-002-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 4 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document toDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-004-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 4 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-005-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 4 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-006-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-007-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-008-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-009-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-010-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-012-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2424EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2525EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2626EDITING DELEGATE: shouldDeleteDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 27EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2928EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3029EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3130layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-013-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1818EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1919EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2020EDITING DELEGATE: shouldDeleteDOMRange:range from 15 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 15 of #text > DIV > BODY > HTML > #document to 15 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 15 of #text > DIV > BODY > HTML > #document to 15 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2322EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2423EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2524layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-014-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1818EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1919EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2020EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2322EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2423EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2524layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-015-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-016-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-line-017-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 2 of DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-select-all-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 17 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 17 of #text > SPAN > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-select-all-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > UL > DIV > BODY > HTML > #document to 5 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > LI > UL > DIV > BODY > HTML > #document to 5 of #text > LI > UL > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 1 of UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/delete-to-end-of-paragraph-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1412layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/list-item-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > LI > UL > UL > DIV > BODY > HTML > #document to 3 of #text > LI > UL > UL > DIV > BODY > HTML > #document
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > UL > DIV > BODY > HTML > #document to 0 of LI > UL > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of LI > UL > UL > DIV > BODY > HTML > #document to 0 of LI > UL > UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > UL > DIV > BODY > HTML > #document to 0 of LI > UL > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of UL > DIV > BODY > HTML > #document to 0 of UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/merge-different-styles-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/merge-endOfParagraph-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/merge-no-br-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/non-smart-delete-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
89EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
910EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1011layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/pruning-after-merge-2-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/smart-delete-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/smart-delete-003-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/smart-delete-004-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/deleting/table-cells-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 24 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 24 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 0 of DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document toDOMRange:range from 24 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 24 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/4641880-1-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > LI > UL > DIV > BODY > HTML > #document to 35 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 40 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > LI > UL > DIV > BODY > HTML > #document to 35 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/4641880-2-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document to 35 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 39 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document to 35 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/create-list-with-hr-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/format-block-with-trailing-br-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/indent-list-item-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > UL > DIV > BODY > HTML > #document to 0 of LI > UL > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of UL > DIV > BODY > HTML > #document to 4 of UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > UL > DIV > BODY > HTML > #document to 0 of LI > UL > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/indent-selection-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > BLOCKQUOTE > DIV > BODY > HTML > #document to 5 of #text > SPAN > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 5 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > BLOCKQUOTE > DIV > BODY > HTML > #document to 5 of #text > SPAN > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/insert-list-and-stitch-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 7 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > OL > DIV > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 1 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > OL > DIV > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > OL > DIV > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > OL > DIV > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > OL > DIV > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of DIV > BODY > HTML > #document to 4 of DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > OL > DIV > DIV > BODY > HTML > #document to 0 of LI > OL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1815layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/insertHorizontalRule-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2020EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document toDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2121EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2222EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2423layer at (0,0) size 800x600
2524 RenderView at (0,0) size 800x600
2625layer at (0,0) size 800x600

@@layer at (0,0) size 800x600
4847 text run at (0,0) width 21: "foo"
4948 RenderText {#text} at (21,0) size 24x22
5049 text run at (21,0) width 24: "bar"
 50caret: position 2 of child 8 {DIV} of body
88247

LayoutTests/platform/qt/editing/execCommand/nsresponder-indent-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of BLOCKQUOTE > DIV > BODY > HTML > #document to 0 of BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of BLOCKQUOTE > DIV > BODY > HTML > #document to 0 of BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/nsresponder-outdent-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/remove-list-from-range-selection-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of DIV > BODY > HTML > #document to 6 of DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/execCommand/remove-list-item-1-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of UL > DIV > BODY > HTML > #document to 0 of UL > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/input/emacs-ctrl-o-expected.txt

@@EDITING DELEGATE: shouldInsertText:
88 replacingDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionTyped
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
88247

LayoutTests/platform/qt/editing/inserting/insert-3654864-fix-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > BODY > HTML > #document to 5 of #text > I > SPAN > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of BODY > HTML > #document to 1 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document toDOMRange:range from 1 of BODY > HTML > #document to 1 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > BODY > HTML > #document to 1 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > BODY > HTML > #document to 1 of #text > BODY > HTML > #document toDOMRange:range from 1 of #text > BODY > HTML > #document to 1 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/inserting/insert-3775316-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 2 of SPAN > DIV > BODY > HTML > #document to 2 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1816EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2118EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2219EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2320EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2421EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2522EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 23EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2824EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2925EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3026layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-3851164-fix-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > P > BODY > HTML > #document to 19 of #text > P > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document toDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document toDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1513EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1614layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-after-delete-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/inserting/insert-at-end-01-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-at-end-02-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-br-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 2 of SPAN > DIV > BODY > HTML > #document to 2 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-br-005-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1615layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/inserting/insert-div-005-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
1111EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1817layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-007-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-009-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-010-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/inserting/insert-div-020-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of BODY > HTML > #document to 7 of BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-023-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
2121EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document toDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2222EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2323EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > B > P > BODY > HTML > #document to 1 of #text > B > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > P > BODY > HTML > #document to 1 of #text > B > P > BODY > HTML > #document toDOMRange:range from 1 of #text > B > P > BODY > HTML > #document to 1 of #text > B > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2625EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2726EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2827layer at (0,0) size 784x738
88247

LayoutTests/platform/qt/editing/inserting/insert-div-024-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > B > P > BODY > HTML > #document to 6 of #text > B > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > B > P > BODY > HTML > #document to 6 of #text > B > P > BODY > HTML > #document toDOMRange:range from 0 of #text > B > P > BODY > HTML > #document to 6 of #text > B > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > B > P > BODY > HTML > #document to 6 of #text > B > P > BODY > HTML > #document toDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document toDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2018EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2220EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChange:WebVi
3331EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document toDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3432EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3533EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
36 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
37 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document toDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3835EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3936EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4037EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/inserting/insert-div-025-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/insert-div-026-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1816EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > B > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2118EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2219EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2320layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/multiple-lines-selected-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/paragraph-separator-03-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/paragraph-separator-in-table-2-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 0 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document toDOMRange:range from 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/redo-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1210EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 48 of #text > DIV > BODY > HTML > #document to 48 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/inserting/return-key-with-selection-001-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 0 of #text > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/return-key-with-selection-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 0 of #text > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1111layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/inserting/return-key-with-selection-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312layer at (0,0) size 784x616
88247

LayoutTests/platform/qt/editing/pasteboard/8145-3-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/3976872-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > B > DIV > DIV > BODY > HTML > #document to 28 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 28 of #text > B > DIV > DIV > BODY > HTML > #document to 28 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > B > DIV > DIV > BODY > HTML > #document to 28 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: shouldInsertText:this text should end up bold replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 28 of #text > B > DIV > DIV > BODY > HTML > #document to 28 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 28 of #text > B > DIV > DIV > BODY > HTML > #document to 28 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 28 of #text > B > DIV > DIV > BODY > HTML > #document to 28 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1614EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1715EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1816layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/4076267-3-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
2221EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2322EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document
2423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2725EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2826EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2927EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
30 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
31 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 28EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3229EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3330EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3431EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3532EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3633EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
37 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3935EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4036EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4137EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
4642EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4743EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4844EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
49 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 45EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5046EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5147EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5248EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
5955EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6056EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document
6157EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
62 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
63 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 58EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6459EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6560EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6661EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
67 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
68 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 62EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6963EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7064EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7165EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7266EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7367EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
74 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
75 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 68EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7669EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7770EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7871EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
8376EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8477EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8578EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
86 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 79EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8780EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8881EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8982EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9083EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
91 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 84EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9285EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9386EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9487EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
10497EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10598EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document
10699EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
107 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
108 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 100EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109101EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
110102EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
111103EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
112 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
113 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 104EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
114105EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
115106EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
116107EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
117108EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
118109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
119 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
120 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 110EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
121111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
122112EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
123113EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
128118EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
129119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
130120EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
131 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 121EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
132122EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
133123EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
134124EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
135125EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
136 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 126EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
137127EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
138128EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
139129EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
140130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
141 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 131EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
142132EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
143133EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
144134EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
153143EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
154144EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document
155145EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
156 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
157 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 146EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
158147EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
159148EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
160149EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
161 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
162 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 150EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
163151EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
164152EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
165153EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
166154EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
167155EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
168 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
169 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 156EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
170157EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
171158EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
172159EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
177164EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
178165EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
179166EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
180 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 167EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
181168EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
182169EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
183170EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
184171EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
185 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 172EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
186173EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
187174EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
188175EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
189176EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
190 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 177EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
191178EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
192179EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
193180EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
194181EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
195 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 182EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
196183EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
197184EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
198185EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
210197EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
211198EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document
212199EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
213 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
214 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 200EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
215201EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
216202EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
217203EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
218 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
219 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 204EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
220205EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
221206EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
222207EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
223208EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
224209EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
225 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
226 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 210EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
227211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
228212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
229213EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
234218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
235219EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
236220EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
237 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 221EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
238222EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
239223EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
240224EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
241225EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
242 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 226EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
243227EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
244228EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
245229EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
246230EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
247 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 231EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
248232EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
249233EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
250234EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
251235EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
252 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 236EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
253237EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
254238EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
255239EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
256240EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
257 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 241EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
258242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
259243EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
260244EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
271255EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
272256EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document
273257EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
274 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
275 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 258EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
276259EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
277260EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
278261EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
279 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
280 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 262EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
281263EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
282264EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
283265EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
284266EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
285267EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
286 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
287 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 268EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
288269EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
289270EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
290271EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
295276EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
296277EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
297278EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
298 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 279EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
299280EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
300281EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
301282EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
302283EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
303 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 284EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
304285EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
305286EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
306287EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
307288EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
308 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 289EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
309290EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
310291EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
311292EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
312293EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
313 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 294EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
314295EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
315296EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
316297EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
317298EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
318 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 299EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
319300EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
320301EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
321302EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
322303EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
323 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 304EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
324305EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
325306EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
326307EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
340321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
341322EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document
342323EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
343 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
344 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 324EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
345325EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
346326EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
347327EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
348 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
349 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 328EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
350329EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
351330EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
352331EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
353332EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
354333EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
355 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
356 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 334EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
357335EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
358336EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
359337EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
364342EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
365343EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
366344EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
367 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 345EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
368346EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
369347EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
370348EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
371349EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
372 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 350EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
373351EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
374352EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
375353EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
376354EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
377 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 355EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
378356EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
379357EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
380358EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
381359EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
382 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 360EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
383361EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
384362EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
385363EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
386364EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
387 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 365EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
388366EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
389367EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
390368EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
391369EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
392 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 370EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
393371EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
394372EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
395373EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
396374EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
397 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 375EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
398376EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
399377EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
400378EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
413391EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
414392EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document
415393EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
416 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
417 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 394EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
418395EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
419396EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
420397EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
421 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
422 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 398EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
423399EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
424400EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
425401EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
426402EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
427403EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
428 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
429 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 404EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
430405EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
431406EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
432407EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
437412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
438413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
439414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
440 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 415EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
441416EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
442417EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
443418EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
444419EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
445 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 420EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
446421EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
447422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
448423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
449424EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
450 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 425EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
451426EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
452427EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
453428EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
454429EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
455 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 430EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
456431EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
457432EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
458433EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
459434EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
460 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 435EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
461436EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
462437EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
463438EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
464439EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
465 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 440EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
466441EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
467442EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
468443EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
469444EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
470 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 445EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
471446EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
472447EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
473448EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
474449EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
475 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 450EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
476451EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
477452EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
478453EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
494469EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
495470EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document
496471EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
497 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
498 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 472EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
499473EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
500474EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
501475EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
502 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
503 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 476EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
504477EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
505478EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
506479EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
507480EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
508481EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
509 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
510 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 482EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
511483EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
512484EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
513485EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
518490EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
519491EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
520492EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
521 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 493EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
522494EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
523495EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
524496EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
525497EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
526 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 498EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
527499EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
528500EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
529501EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
530502EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
531 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 503EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
532504EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
533505EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
534506EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
535507EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
536 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 508EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
537509EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
538510EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
539511EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
540512EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
541 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 513EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
542514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
543515EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
544516EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
545517EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
546 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 518EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
547519EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
548520EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
549521EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
550522EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
551 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 523EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
552524EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
553525EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
554526EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
555527EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
556 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 528EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 10 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
557529EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
558530EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
559531EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
560532EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
561 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 533EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
562534EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
563535EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
564536EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
579551EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
580552EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document
581553EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
582 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
583 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 554EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
584555EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
585556EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
586557EDITING DELEGATE: shouldInsertText:x x replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
587 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
588 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 558EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
589559EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
590560EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
591561EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
88247

LayoutTests/platform/qt/editing/pasteboard/4076267-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1010EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1615EDITING DELEGATE: shouldInsertText: this text should have a single leading space before it replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
17 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
18 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 55 of #text > DIV > DIV > BODY > HTML > #document to 55 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 55 of #text > DIV > DIV > BODY > HTML > #document to 55 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 55 of #text > DIV > DIV > BODY > HTML > #document to 55 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1917EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2018EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2119layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/block-wrappers-necessary-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > P > CENTER > DIV > DIV > BODY > HTML > #document to 86 of #text > P > CENTER > DIV > DIV > BODY > HTML > #document
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > CENTER > DIV > DIV > BODY > HTML > #document to 0 of P > CENTER > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > CENTER > DIV > DIV > BODY > HTML > #document to 2 of CENTER > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > CENTER > DIV > DIV > BODY > HTML > #document to 0 of P > CENTER > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of P > CENTER > DIV > DIV > BODY > HTML > #document to 0 of P > CENTER > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > P > P > CENTER > DIV > DIV > BODY > HTML > #document to 85 of #text > P > P > CENTER > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of P > CENTER > DIV > DIV > BODY > HTML > #document to 2 of P > CENTER > DIV > DIV > BODY > HTML > #document toDOMRange:range from 85 of #text > P > P > CENTER > DIV > DIV > BODY > HTML > #document to 85 of #text > P > P > CENTER > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1816EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1917EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2018layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/displaced-generic-placeholder-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 17 of #text > DIV > DIV > BODY > HTML > #document to 17 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > DIV > DIV > BODY > HTML > #document to 17 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/displaced-placeholder-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 17 of #text > DIV > DIV > BODY > HTML > #document to 17 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > DIV > DIV > BODY > HTML > #document to 17 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/merge-after-delete-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/merge-after-delete-2-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/merge-after-delete-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/merge-end-blockquote-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 3 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 11 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document to 3 of #text > DIV > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1817layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/merge-end-list-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > LI > UL > DIV > BODY > HTML > #document to 3 of #text > DIV > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > LI > UL > DIV > BODY > HTML > #document to 4 of #text > DIV > LI > UL > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > LI > UL > DIV > BODY > HTML > #document to 3 of #text > DIV > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2019layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/merge-end-table-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 3 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 4 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 3 of #text > DIV > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2019layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/nested-blocks-with-text-area-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document toDOMRange:range from 1 of #text > BODY > HTML > #document to 2 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of BODY > HTML > #document to 5 of BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/nested-blocks-with-text-field-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BODY > HTML > #document to 0 of BODY > HTML > #document toDOMRange:range from 1 of #text > BODY > HTML > #document to 2 of BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of BODY > HTML > #document to 5 of BODY > HTML > #document toDOMRange:range from 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-4035648-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1715layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-line-endings-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1817layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-line-endings-006-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1717EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1818EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1919layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-match-style-001-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1412EDITING DELEGATE: shouldInsertText:b replacingDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
88247

LayoutTests/platform/qt/editing/pasteboard/paste-match-style-002-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109EDITING DELEGATE: shouldInsertText:hello replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > B > DIV > DIV > BODY > HTML > #document to 5 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > B > DIV > DIV > BODY > HTML > #document to 5 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > B > DIV > DIV > BODY > HTML > #document to 5 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-table-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 2 of TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-table-cells-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-006-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
4141EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4343EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
44 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
45 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4645EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4746EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4847EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-007-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
4141EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4343EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
44 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
45 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4645EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4746EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4847EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-010-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
4646EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4747EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4848EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 3 of DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
49 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
50 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 49EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5150EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5251EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5352EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-015-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1212EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > DIV > DIV > BODY > HTML > #document
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 1 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > P > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of P > DIV > DIV > BODY > HTML > #document to 2 of P > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > P > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2018EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2220EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > P > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > P > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > P > DIV > DIV > BODY > HTML > #document to 0 of P > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2523EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of P > P > DIV > DIV > BODY > HTML > #document to 0 of P > P > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > P > P > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > P > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of P > P > DIV > DIV > BODY > HTML > #document to 2 of P > P > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > P > P > P > DIV > DIV > BODY > HTML > #document to 3 of #text > P > P > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2825EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2926EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3027layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-016-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 6 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of P > DIV > DIV > BODY > HTML > #document to 0 of P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
1918EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2019EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2120EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 2 of P > DIV > DIV > BODY > HTML > #document to 2 of P > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > P > DIV > DIV > BODY > HTML > #document to 0 of DIV > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of P > DIV > DIV > BODY > HTML > #document to 3 of P > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > P > DIV > DIV > BODY > HTML > #document to 0 of DIV > P > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2422EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2523EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2624layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-017-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 5 of #text > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 6 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/paste-text-018-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
88247

LayoutTests/platform/qt/editing/pasteboard/prevent-block-nesting-01-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > BODY > HTML > #document to 3 of DIV > BODY > HTML > #document toDOMRange:range from 85 of #text > DIV > DIV > BODY > HTML > #document to 85 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/smart-paste-007-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChange:WebVi
1917EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2018EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
2119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2421EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2522EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2623layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/smart-paste-008-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/testcase-9507-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/pasteboard/undoable-fragment-removes-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
99EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1816EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1917EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2018layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/selection/node-removal-1-expected.txt

11EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32layer at (0,0) size 800x600
43 RenderView at (0,0) size 800x600
54layer at (0,0) size 800x600

@@layer at (0,0) size 800x600
2120 text run at (0,0) width 36: "hello "
2221 RenderText {#text} at (36,0) size 45x22
2322 text run at (36,0) width 45: "world!"
 23selection start: position 1 of child 0 {#text} of child 5 {DIV} of body
 24selection end: position 1 of child 5 {DIV} of body
88247

LayoutTests/platform/qt/editing/selection/node-removal-2-expected.txt

11EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > P > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 2EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > P > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
43EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
54layer at (0,0) size 800x600
65 RenderView at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/selection/select-all-iframe-expected.txt

@@EDITING DELEGATE: shouldChangeSelectedDO
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-001-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 1 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-002-expected.txt

@@EDITING DELEGATE: shouldBeginEditingInDO
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-003-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of DIV > DIV > BODY > HTML > #document to 5 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-004-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 1 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of DIV > DIV > BODY > HTML > #document to 4 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1412layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-007-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 6 of BODY > HTML > #document
22EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 1 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-009-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-010-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-011-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-012-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/create-block-for-style-013-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of DIV > DIV > DIV > BODY > HTML > #document to 3 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/relative-font-size-change-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1816EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2118EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2219EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2521EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2622EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 23EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2924EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3025EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
31 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 25 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3327EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3428EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3529layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/relative-font-size-change-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88247

LayoutTests/platform/qt/editing/style/smoosh-styles-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1513EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1614EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
1816EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1917EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
2018EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 19EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2320EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2421EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2522layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/smoosh-styles-003-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > DIV > BODY > HTML > #document
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/style-3998892-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > DIV > DIV > DIV > BODY > HTML > #document to 3 of #text > B > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/style-boundary-001-expected.txt

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > B > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/editing/style/style-boundary-004-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of #text > B > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > B > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > B > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
88247

LayoutTests/platform/qt/fast/dynamic/move-node-with-selection-expected.txt

@@layer at (0,0) size 800x600
77 RenderInline {DIV} at (0,0) size 91x22
88 RenderText {#text} at (0,0) size 91x22
99 text run at (0,0) width 91: "Lorem ipsum"
10  RenderBlock (anonymous) at (0,22) size 784x0
11  RenderText {#text} at (0,0) size 0x0
12  RenderText {#text} at (0,0) size 0x0
 10caret: position 2 of body
88247

LayoutTests/platform/qt/svg/custom/use-clipped-hit-expected.txt

@@layer at (0,0) size 800x600
1010 RenderSVGText {text} at (90,114) size 46x22 contains 1 chunk(s)
1111 RenderSVGInlineText {#text} at (0,0) size 46x22
1212 chunk 1 text run 1 at (90.00,130.00) startOffset 0 endOffset 6 width 46.00: "Passed"
 13caret: position 0 of child 7 {text} of child 1 {svg} of document
88247