Source/WebCore/ChangeLog

 12011-09-26 Una Sabovic <una.sabovic@palm.com>
 2
 3 Setting innerText to an empty string on editable div loses focus
 4 https://bugs.webkit.org/show_bug.cgi?id=62092
 5
 6 Reviewed by NOBODY (OOPS!).
 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 When text is inserted/deleted update selection per range modification spec:
 11 http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-Mutation
 12
 13 Tests: editing/selection/document-mutation.html
 14 editing/selection/editable-div-clear-on-keydown.html
 15
 16 * editing/DeleteSelectionCommand.cpp:
 17 * editing/FrameSelection.cpp:
 18 (WebCore::FrameSelection::respondToNodeModification):
 19 (WebCore::updatePositionAfterAdoptingTextReplacement):
 20 (WebCore::FrameSelection::textWillBeReplaced):
 21 * editing/htmlediting.cpp:
 22 (WebCore::updatePositionForNodeRemoval):
 23 * editing/htmlediting.h:
 24
1252011-09-23 Simon Fraser <simon.fraser@apple.com>
226
327 Repaint tests don't work in WebKit2
95970

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::PositionIsBeforeChildren:
323  if (position.containerNode() == node)
324  position = positionInParentBeforeNode(node);
325  break;
326  case Position::PositionIsAfterChildren:
327  if (position.containerNode() == node)
328  position = positionInParentAfterNode(node);
329  break;
330  case Position::PositionIsOffsetInAnchor:
331  if (position.containerNode() == node->parentNode() && static_cast<unsigned>(position.offsetInContainerNode()) > node->nodeIndex())
332  position.moveToOffset(position.offsetInContainerNode() - 1);
333  else if (node->contains(position.containerNode()))
334  position = positionInParentBeforeNode(node);
335  break;
336  case Position::PositionIsAfterAnchor:
337  if (node->contains(position.anchorNode()))
338  position = positionInParentAfterNode(node);
339  break;
340  case Position::PositionIsBeforeAnchor:
341  if (node->contains(position.anchorNode()))
342  position = positionInParentBeforeNode(node);
343  break;
344  }
345 }
346 
347317static Position firstEditablePositionInNode(Node* node)
348318{
349319 ASSERT(node);
95957

Source/WebCore/editing/FrameSelection.cpp

@@void FrameSelection::respondToNodeModifi
298298 bool clearDOMTreeSelection = false;
299299
300300 if (startRemoved || endRemoved) {
301  // FIXME: When endpoints are removed, we should just alter the selection, instead of blowing it away.
 301 Position start = m_selection.start();
 302 Position end = m_selection.end();
 303 if (startRemoved)
 304 updatePositionForNodeRemoval(node, start);
 305 if (endRemoved)
 306 updatePositionForNodeRemoval(node, end);
 307
 308 if (start.isNotNull() && end.isNotNull()) {
 309 if (m_selection.isBaseFirst())
 310 m_selection.setWithoutValidation(start, end);
 311 else
 312 m_selection.setWithoutValidation(end, start);
 313 } else
 314 clearDOMTreeSelection = true;
 315
302316 clearRenderTreeSelection = true;
303  clearDOMTreeSelection = true;
304317 } else if (baseRemoved || extentRemoved) {
305318 // The base and/or extent are about to be removed, but the start and end aren't.
306319 // Change the base and extent to the start and end, but don't re-validate the

@@void FrameSelection::respondToNodeModifi
331344
332345enum EndPointType { EndPointIsStart, EndPointIsEnd };
333346
334 static bool shouldRemovePositionAfterAdoptingTextReplacement(Position& position, EndPointType type, CharacterData* node, unsigned offset, unsigned oldLength, unsigned newLength)
 347static void updatePositionAfterAdoptingTextReplacement(Position& position, EndPointType type, CharacterData* node, unsigned offset, unsigned oldLength, unsigned newLength)
335348{
336349 if (!position.anchorNode() || position.anchorNode() != node || position.anchorType() != Position::PositionIsOffsetInAnchor)
337  return false;
 350 return;
338351
 352 // See: http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-Mutation
339353 ASSERT(position.offsetInContainerNode() >= 0);
340354 unsigned positionOffset = static_cast<unsigned>(position.offsetInContainerNode());
341  if (positionOffset > offset && positionOffset < offset + oldLength)
342  return true;
343 
344  // Adjust the offset if the position is after or at the end of the deleted contents (positionOffset >= offset + oldLength)
345  // to avoid having a stale offset except when the position is the end of selection and nothing is deleted, in which case,
346  // adjusting offset results in incorrectly extending the selection until the end of newly inserted contents.
347  if ((positionOffset > offset + oldLength) || (positionOffset == offset + oldLength && (type == EndPointIsStart || oldLength)))
 355 // Replacing text can be viewed as a deletion followed by insertion.
 356 if (positionOffset >= offset && positionOffset <= offset + oldLength)
 357 position.moveToOffset(offset);
 358
 359 // Adjust the offset if the position is after the end of the deleted contents
 360 // (positionOffset > offset + oldLength) to avoid having a stale offset.
 361 if (positionOffset > offset + oldLength)
348362 position.moveToOffset(positionOffset - oldLength + newLength);
349 
350  return false;
351363}
352364
353365void FrameSelection::textWillBeReplaced(CharacterData* node, unsigned offset, unsigned oldLength, unsigned newLength)

@@void FrameSelection::textWillBeReplaced(
360372 Position extent = m_selection.extent();
361373 Position start = m_selection.start();
362374 Position end = m_selection.end();
363  bool shouldRemoveBase = shouldRemovePositionAfterAdoptingTextReplacement(base, m_selection.isBaseFirst() ? EndPointIsStart : EndPointIsEnd, node, offset, oldLength, newLength);
364  bool shouldRemoveExtent = shouldRemovePositionAfterAdoptingTextReplacement(extent, m_selection.isBaseFirst() ? EndPointIsEnd : EndPointIsStart, node, offset, oldLength, newLength);
365  bool shouldRemoveStart = shouldRemovePositionAfterAdoptingTextReplacement(start, EndPointIsStart, node, offset, oldLength, newLength);
366  bool shouldRemoveEnd = shouldRemovePositionAfterAdoptingTextReplacement(end, EndPointIsEnd, node, offset, oldLength, newLength);
 375 updatePositionAfterAdoptingTextReplacement(base, m_selection.isBaseFirst() ? EndPointIsStart : EndPointIsEnd, node, offset, oldLength, newLength);
 376 updatePositionAfterAdoptingTextReplacement(extent, m_selection.isBaseFirst() ? EndPointIsEnd : EndPointIsStart, node, offset, oldLength, newLength);
 377 updatePositionAfterAdoptingTextReplacement(start, EndPointIsStart, node, offset, oldLength, newLength);
 378 updatePositionAfterAdoptingTextReplacement(end, EndPointIsEnd, node, offset, oldLength, newLength);
367379
368  if ((base != m_selection.base() || extent != m_selection.extent() || start != m_selection.start() || end != m_selection.end())
369  && !shouldRemoveStart && !shouldRemoveEnd) {
 380 if (base != m_selection.base() || extent != m_selection.extent() || start != m_selection.start() || end != m_selection.end()) {
370381 VisibleSelection newSelection;
371  if (!shouldRemoveBase && !shouldRemoveExtent)
372  newSelection.setWithoutValidation(base, extent);
373  else {
374  if (newSelection.isBaseFirst())
375  newSelection.setWithoutValidation(start, end);
376  else
377  newSelection.setWithoutValidation(end, start);
378  }
 382 newSelection.setWithoutValidation(base, extent);
379383 m_frame->document()->updateLayout();
380384 setSelection(newSelection, 0);
381  return;
382385 }
383 
384  respondToNodeModification(node, shouldRemoveBase, shouldRemoveExtent, shouldRemoveStart, shouldRemoveEnd);
385386}
386387
387388TextDirection FrameSelection::directionOfEnclosingBlock()
95957

Source/WebCore/editing/htmlediting.cpp

@@unsigned numEnclosingMailBlockquotes(con
923923 return num;
924924}
925925
 926void updatePositionForNodeRemoval(Node* node, Position& position)
 927{
 928 if (position.isNull())
 929 return;
 930 switch (position.anchorType()) {
 931 case Position::PositionIsBeforeChildren:
 932 if (position.containerNode() == node)
 933 position = positionInParentBeforeNode(node);
 934 break;
 935 case Position::PositionIsAfterChildren:
 936 if (position.containerNode() == node)
 937 position = positionInParentAfterNode(node);
 938 break;
 939 case Position::PositionIsOffsetInAnchor:
 940 if (position.containerNode() == node->parentNode() && static_cast<unsigned>(position.offsetInContainerNode()) > node->nodeIndex())
 941 position.moveToOffset(position.offsetInContainerNode() - 1);
 942 else if (node->contains(position.containerNode()) || node->contains(position.containerNode()->shadowAncestorNode()))
 943 position = positionInParentBeforeNode(node);
 944 break;
 945 case Position::PositionIsAfterAnchor:
 946 if (node->contains(position.anchorNode()) || node->contains(position.anchorNode()->shadowAncestorNode()))
 947 position = positionInParentAfterNode(node);
 948 break;
 949 case Position::PositionIsBeforeAnchor:
 950 if (node->contains(position.anchorNode()) || node->contains(position.anchorNode()->shadowAncestorNode()))
 951 position = positionInParentBeforeNode(node);
 952 break;
 953 }
 954}
 955
926956bool isMailBlockquote(const Node *node)
927957{
928958 if (!node || !node->hasTagName(blockquoteTag))
95957

Source/WebCore/editing/htmlediting.h

@@bool isAtUnsplittableElement(const Posit
159159// miscellaneous functions on Position
160160
161161unsigned numEnclosingMailBlockquotes(const Position&);
 162void updatePositionForNodeRemoval(Node*, Position&);
162163
163164// -------------------------------------------------------------------------
164165// VisiblePosition
95957

LayoutTests/ChangeLog

 12011-09-26 Una Sabovic <una.sabovic@palm.com>
 2
 3 Setting innerText to an empty string on editable div loses focus
 4 https://bugs.webkit.org/show_bug.cgi?id=62092
 5
 6 Reviewed by NOBODY (OOPS!).
 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 Added test to exercise range modification examples from
 11 http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-Mutation
 12
 13 * editing/deleting/5546763-expected.txt:
 14 * editing/deleting/delete-4038408-fix-expected.txt:
 15 * editing/deleting/delete-all-text-in-text-field-assertion-expected.txt:
 16 * editing/deleting/delete-br-011-expected.txt:
 17 * editing/deleting/delete-by-word-001-expected.txt:
 18 * editing/deleting/delete-by-word-002-expected.txt:
 19 * editing/deleting/delete-cell-contents-expected.txt:
 20 * editing/deleting/delete-ligature-002-expected.txt:
 21 * editing/deleting/delete-ligature-003-expected.txt:
 22 * editing/deleting/delete-select-all-002-expected.txt:
 23 * editing/deleting/delete-select-all-003-expected.txt:
 24 * editing/deleting/merge-paragraph-into-blockquote-expected.txt:
 25 * editing/deleting/paragraph-in-preserveNewline-expected.txt:
 26 * editing/deleting/pruning-after-merge-1-expected.txt:
 27 * editing/deleting/skip-virama-001-expected.txt:
 28 * editing/deleting/whitespace-pre-1-expected.txt:
 29 * editing/execCommand/4920488-expected.txt:
 30 * editing/execCommand/crash-indenting-list-item-expected.txt:
 31 * editing/execCommand/createLink-expected.txt:
 32 * editing/execCommand/format-block-expected.txt:
 33 * editing/execCommand/format-block-multiple-paragraphs-in-pre-expected.txt:
 34 * editing/execCommand/format-block-with-braces-expected.txt:
 35 * editing/execCommand/hilitecolor-expected.txt:
 36 * editing/execCommand/indent-nested-lists-1-expected.txt:
 37 * editing/execCommand/indent-nested-lists-2-expected.txt:
 38 * editing/execCommand/indent-nested-lists-3-expected.txt:
 39 * editing/execCommand/indent-nested-lists-4-expected.txt:
 40 * editing/execCommand/indent-nested-lists-5-expected.txt:
 41 * editing/execCommand/indent-nested-lists-6-expected.txt:
 42 * editing/execCommand/indent-nested-lists-7-expected.txt:
 43 * editing/execCommand/indent-paragraphs-expected.txt:
 44 * editing/execCommand/indent-with-style-expected.txt:
 45 * editing/execCommand/insertHTML-expected.txt:
 46 * editing/execCommand/outdent-nested-lists-1-expected.txt:
 47 * editing/execCommand/outdent-nested-lists-2-expected.txt:
 48 * editing/execCommand/outdent-nested-lists-3-expected.txt:
 49 * editing/execCommand/outdent-nested-lists-4-expected.txt:
 50 * editing/execCommand/queryCommandState-01-expected.txt:
 51 * editing/execCommand/remove-formatting-2-expected.txt:
 52 * editing/execCommand/remove-formatting-expected.txt:
 53 * editing/execCommand/remove-list-1-expected.txt:
 54 * editing/execCommand/remove-list-items-expected.txt:
 55 * editing/execCommand/switch-list-type-expected.txt:
 56 * editing/execCommand/unlink-expected.txt:
 57 * editing/inserting/insert-3786362-fix-expected.txt:
 58 * editing/inserting/insert-div-021-expected.txt:
 59 * editing/inserting/insert-paragraph-at-end-of-line-expected.txt:
 60 * editing/inserting/insert-thai-characters-001-expected.txt:
 61 * editing/pasteboard/4242293-1-expected.txt:
 62 * editing/pasteboard/5065605-expected.txt:
 63 * editing/pasteboard/block-wrappers-necessary-expected.txt:
 64 * editing/pasteboard/copy-in-password-field-expected.txt:
 65 * editing/pasteboard/copy-text-with-backgroundcolor-expected.txt:
 66 * editing/pasteboard/insert-div-text-into-text-expected.txt:
 67 * editing/pasteboard/interchange-newline-1-expected.txt:
 68 * editing/pasteboard/interchange-newline-3-expected.txt:
 69 * editing/pasteboard/interchange-newline-4-expected.txt:
 70 * editing/pasteboard/merge-end-2-expected.txt:
 71 * editing/pasteboard/merge-end-3-expected.txt:
 72 * editing/pasteboard/merge-end-4-expected.txt:
 73 * editing/pasteboard/merge-end-5-expected.txt:
 74 * editing/pasteboard/nested-blocks-with-text-area-expected.txt:
 75 * editing/pasteboard/nested-blocks-with-text-field-expected.txt:
 76 * editing/pasteboard/paste-into-anchor-text-expected.txt:
 77 * editing/pasteboard/paste-list-001-expected.txt:
 78 * editing/pasteboard/paste-table-001-expected.txt:
 79 * editing/pasteboard/paste-table-002-expected.txt:
 80 * editing/pasteboard/paste-text-001-expected.txt:
 81 * editing/pasteboard/paste-text-002-expected.txt:
 82 * editing/pasteboard/paste-text-003-expected.txt:
 83 * editing/pasteboard/paste-text-011-expected.txt:
 84 * editing/pasteboard/paste-text-017-expected.txt:
 85 * editing/pasteboard/paste-text-018-expected.txt:
 86 * editing/pasteboard/paste-text-at-tabspan-001-expected.txt:
 87 * editing/pasteboard/paste-text-at-tabspan-002-expected.txt:
 88 * editing/pasteboard/paste-text-with-style-expected.txt:
 89 * editing/pasteboard/prevent-block-nesting-01-expected.txt:
 90 * editing/pasteboard/select-element-1-expected.txt:
 91 * editing/pasteboard/smart-paste-003-expected.txt:
 92 * editing/pasteboard/smart-paste-004-expected.txt:
 93 * editing/pasteboard/smart-paste-005-expected.txt:
 94 * editing/pasteboard/smart-paste-006-expected.txt:
 95 * editing/selection/5497643-expected.txt:
 96 * editing/selection/5497643.html:
 97 * editing/selection/character-data-mutation-expected.txt:
 98 * editing/selection/character-data-mutation.html:
 99 * editing/selection/document-mutation-expected.txt: Added.
 100 * editing/selection/document-mutation.html: Added.
 101 * editing/selection/editable-div-clear-on-keydown-expected.txt: Added.
 102 * editing/selection/editable-div-clear-on-keydown.html: Added.
 103 * editing/selection/regional-indicators.html:
 104 * editing/style/remove-underline-from-stylesheet-expected.txt:
 105 * editing/style/typing-style-003-expected.txt:
 106 * editing/undo/redo-style-expected.txt:
 107 * editing/undo/replace-text-in-node-preserving-markers-crash-expected.txt:
 108 * editing/undo/undo-indent-expected.txt:
 109 * platform/qt/editing/deleting/collapse-whitespace-3587601-fix-expected.txt:
 110 * platform/qt/editing/deleting/delete-3608445-fix-expected.txt:
 111 * platform/qt/editing/deleting/delete-3608462-fix-expected.txt:
 112 * platform/qt/editing/deleting/delete-3775172-fix-expected.txt:
 113 * platform/qt/editing/deleting/delete-3800834-fix-expected.txt:
 114 * platform/qt/editing/deleting/delete-3857753-fix-expected.txt:
 115 * platform/qt/editing/deleting/delete-3865854-fix-expected.txt:
 116 * platform/qt/editing/deleting/delete-3928305-fix-expected.txt:
 117 * platform/qt/editing/deleting/delete-3959464-fix-expected.txt:
 118 * platform/qt/editing/deleting/delete-after-span-ws-002-expected.txt:
 119 * platform/qt/editing/deleting/delete-after-span-ws-003-expected.txt:
 120 * platform/qt/editing/deleting/delete-and-undo-expected.txt:
 121 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-001-expected.txt:
 122 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-002-expected.txt:
 123 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-003-expected.txt:
 124 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-004-expected.txt:
 125 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-005-expected.txt:
 126 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-006-expected.txt:
 127 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-007-expected.txt:
 128 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-009-expected.txt:
 129 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-010-expected.txt:
 130 * platform/qt/editing/deleting/delete-at-paragraph-boundaries-011-expected.txt:
 131 * platform/qt/editing/deleting/delete-block-contents-001-expected.txt:
 132 * platform/qt/editing/deleting/delete-block-contents-002-expected.txt:
 133 * platform/qt/editing/deleting/delete-block-contents-003-expected.txt:
 134 * platform/qt/editing/deleting/delete-block-merge-contents-001-expected.txt:
 135 * platform/qt/editing/deleting/delete-block-merge-contents-002-expected.txt:
 136 * platform/qt/editing/deleting/delete-block-merge-contents-003-expected.txt:
 137 * platform/qt/editing/deleting/delete-block-merge-contents-004-expected.txt:
 138 * platform/qt/editing/deleting/delete-block-merge-contents-005-expected.txt:
 139 * platform/qt/editing/deleting/delete-block-merge-contents-006-expected.txt:
 140 * platform/qt/editing/deleting/delete-block-merge-contents-007-expected.txt:
 141 * platform/qt/editing/deleting/delete-block-merge-contents-008-expected.txt:
 142 * platform/qt/editing/deleting/delete-block-merge-contents-009-expected.txt:
 143 * platform/qt/editing/deleting/delete-block-merge-contents-010-expected.txt:
 144 * platform/qt/editing/deleting/delete-block-merge-contents-012-expected.txt:
 145 * platform/qt/editing/deleting/delete-block-merge-contents-013-expected.txt:
 146 * platform/qt/editing/deleting/delete-block-merge-contents-014-expected.txt:
 147 * platform/qt/editing/deleting/delete-block-merge-contents-015-expected.txt:
 148 * platform/qt/editing/deleting/delete-block-merge-contents-016-expected.txt:
 149 * platform/qt/editing/deleting/delete-block-merge-contents-017-expected.txt:
 150 * platform/qt/editing/deleting/delete-block-merge-contents-018-expected.txt:
 151 * platform/qt/editing/deleting/delete-block-merge-contents-019-expected.txt:
 152 * platform/qt/editing/deleting/delete-block-merge-contents-020-expected.txt:
 153 * platform/qt/editing/deleting/delete-block-merge-contents-021-expected.txt:
 154 * platform/qt/editing/deleting/delete-block-merge-contents-022-expected.txt:
 155 * platform/qt/editing/deleting/delete-block-merge-contents-023-expected.txt:
 156 * platform/qt/editing/deleting/delete-block-merge-contents-024-expected.txt:
 157 * platform/qt/editing/deleting/delete-br-008-expected.txt:
 158 * platform/qt/editing/deleting/delete-br-010-expected.txt:
 159 * platform/qt/editing/deleting/delete-contiguous-ws-001-expected.txt:
 160 * platform/qt/editing/deleting/delete-first-list-item-expected.txt:
 161 * platform/qt/editing/deleting/delete-image-001-expected.txt:
 162 * platform/qt/editing/deleting/delete-image-002-expected.txt:
 163 * platform/qt/editing/deleting/delete-image-003-expected.txt:
 164 * platform/qt/editing/deleting/delete-image-004-expected.txt:
 165 * platform/qt/editing/deleting/delete-leading-ws-001-expected.txt:
 166 * platform/qt/editing/deleting/delete-line-001-expected.txt:
 167 * platform/qt/editing/deleting/delete-line-002-expected.txt:
 168 * platform/qt/editing/deleting/delete-line-003-expected.txt:
 169 * platform/qt/editing/deleting/delete-line-004-expected.txt:
 170 * platform/qt/editing/deleting/delete-line-005-expected.txt:
 171 * platform/qt/editing/deleting/delete-line-006-expected.txt:
 172 * platform/qt/editing/deleting/delete-line-007-expected.txt:
 173 * platform/qt/editing/deleting/delete-line-008-expected.txt:
 174 * platform/qt/editing/deleting/delete-line-009-expected.txt:
 175 * platform/qt/editing/deleting/delete-line-010-expected.txt:
 176 * platform/qt/editing/deleting/delete-line-012-expected.txt:
 177 * platform/qt/editing/deleting/delete-line-013-expected.txt:
 178 * platform/qt/editing/deleting/delete-line-014-expected.txt:
 179 * platform/qt/editing/deleting/delete-line-015-expected.txt:
 180 * platform/qt/editing/deleting/delete-line-016-expected.txt:
 181 * platform/qt/editing/deleting/delete-line-017-expected.txt:
 182 * platform/qt/editing/deleting/delete-line-end-ws-002-expected.txt:
 183 * platform/qt/editing/deleting/delete-listitem-001-expected.txt:
 184 * platform/qt/editing/deleting/delete-listitem-002-expected.txt:
 185 * platform/qt/editing/deleting/delete-selection-001-expected.txt:
 186 * platform/qt/editing/deleting/delete-to-end-of-paragraph-expected.txt:
 187 * platform/qt/editing/deleting/delete-trailing-ws-001-expected.txt:
 188 * platform/qt/editing/deleting/delete-trailing-ws-002-expected.txt:
 189 * platform/qt/editing/deleting/delete-ws-fixup-002-expected.txt:
 190 * platform/qt/editing/deleting/forward-delete-expected.txt:
 191 * platform/qt/editing/deleting/list-item-1-expected.txt:
 192 * platform/qt/editing/deleting/merge-different-styles-expected.txt:
 193 * platform/qt/editing/deleting/merge-endOfParagraph-expected.txt:
 194 * platform/qt/editing/deleting/merge-no-br-expected.txt:
 195 * platform/qt/editing/deleting/non-smart-delete-expected.txt:
 196 * platform/qt/editing/deleting/pruning-after-merge-2-expected.txt:
 197 * platform/qt/editing/deleting/smart-delete-001-expected.txt:
 198 * platform/qt/editing/deleting/smart-delete-003-expected.txt:
 199 * platform/qt/editing/deleting/smart-delete-004-expected.txt:
 200 * platform/qt/editing/deleting/table-cells-expected.txt:
 201 * platform/qt/editing/execCommand/4641880-1-expected.txt:
 202 * platform/qt/editing/execCommand/4641880-2-expected.txt:
 203 * platform/qt/editing/execCommand/create-list-with-hr-expected.txt:
 204 * platform/qt/editing/execCommand/find-after-replace-expected.txt:
 205 * platform/qt/editing/execCommand/format-block-with-trailing-br-expected.txt:
 206 * platform/qt/editing/execCommand/indent-list-item-expected.txt:
 207 * platform/qt/editing/execCommand/indent-selection-expected.txt:
 208 * platform/qt/editing/execCommand/insert-list-and-stitch-expected.txt:
 209 * platform/qt/editing/execCommand/insertHorizontalRule-expected.txt:
 210 * platform/qt/editing/execCommand/nsresponder-indent-expected.txt:
 211 * platform/qt/editing/execCommand/nsresponder-outdent-expected.txt:
 212 * platform/qt/editing/execCommand/paste-1-expected.txt:
 213 * platform/qt/editing/execCommand/paste-2-expected.txt:
 214 * platform/qt/editing/execCommand/remove-list-from-range-selection-expected.txt:
 215 * platform/qt/editing/execCommand/remove-list-item-1-expected.txt:
 216 * platform/qt/editing/input/emacs-ctrl-o-expected.txt:
 217 * platform/qt/editing/inserting/4278698-expected.txt:
 218 * platform/qt/editing/inserting/editing-empty-divs-expected.txt:
 219 * platform/qt/editing/inserting/insert-3654864-fix-expected.txt:
 220 * platform/qt/editing/inserting/insert-3775316-fix-expected.txt:
 221 * platform/qt/editing/inserting/insert-3851164-fix-expected.txt:
 222 * platform/qt/editing/inserting/insert-after-delete-001-expected.txt:
 223 * platform/qt/editing/inserting/insert-at-end-01-expected.txt:
 224 * platform/qt/editing/inserting/insert-at-end-02-expected.txt:
 225 * platform/qt/editing/inserting/insert-br-001-expected.txt:
 226 * platform/qt/editing/inserting/insert-br-003-expected.txt:
 227 * platform/qt/editing/inserting/insert-br-005-expected.txt:
 228 * platform/qt/editing/inserting/insert-br-006-expected.txt:
 229 * platform/qt/editing/inserting/insert-br-007-expected.txt:
 230 * platform/qt/editing/inserting/insert-br-008-expected.txt:
 231 * platform/qt/editing/inserting/insert-br-at-tabspan-003-expected.txt:
 232 * platform/qt/editing/inserting/insert-div-001-expected.txt:
 233 * platform/qt/editing/inserting/insert-div-002-expected.txt:
 234 * platform/qt/editing/inserting/insert-div-003-expected.txt:
 235 * platform/qt/editing/inserting/insert-div-005-expected.txt:
 236 * platform/qt/editing/inserting/insert-div-006-expected.txt:
 237 * platform/qt/editing/inserting/insert-div-007-expected.txt:
 238 * platform/qt/editing/inserting/insert-div-008-expected.txt:
 239 * platform/qt/editing/inserting/insert-div-009-expected.txt:
 240 * platform/qt/editing/inserting/insert-div-010-expected.txt:
 241 * platform/qt/editing/inserting/insert-div-020-expected.txt:
 242 * platform/qt/editing/inserting/insert-div-023-expected.txt:
 243 * platform/qt/editing/inserting/insert-div-024-expected.txt:
 244 * platform/qt/editing/inserting/insert-div-025-expected.txt:
 245 * platform/qt/editing/inserting/insert-div-026-expected.txt:
 246 * platform/qt/editing/inserting/insert-space-in-empty-doc-expected.txt:
 247 * platform/qt/editing/inserting/insert-text-at-tabspan-001-expected.txt:
 248 * platform/qt/editing/inserting/multiple-lines-selected-expected.txt:
 249 * platform/qt/editing/inserting/paragraph-separator-03-expected.txt:
 250 * platform/qt/editing/inserting/paragraph-separator-in-table-2-expected.txt:
 251 * platform/qt/editing/inserting/redo-expected.txt:
 252 * platform/qt/editing/inserting/return-key-with-selection-001-expected.txt:
 253 * platform/qt/editing/inserting/return-key-with-selection-002-expected.txt:
 254 * platform/qt/editing/inserting/return-key-with-selection-003-expected.txt:
 255 * platform/qt/editing/inserting/typing-001-expected.txt:
 256 * platform/qt/editing/inserting/typing-002-expected.txt:
 257 * platform/qt/editing/inserting/typing-003-expected.txt:
 258 * platform/qt/editing/inserting/typing-around-br-001-expected.txt:
 259 * platform/qt/editing/inserting/typing-around-image-001-expected.txt:
 260 * platform/qt/editing/pasteboard/3976872-expected.txt:
 261 * platform/qt/editing/pasteboard/4076267-2-expected.txt:
 262 * platform/qt/editing/pasteboard/4076267-3-expected.txt:
 263 * platform/qt/editing/pasteboard/4076267-expected.txt:
 264 * platform/qt/editing/pasteboard/8145-3-expected.txt:
 265 * platform/qt/editing/pasteboard/bad-placeholder-expected.txt:
 266 * platform/qt/editing/pasteboard/cut-text-001-expected.txt:
 267 * platform/qt/editing/pasteboard/displaced-generic-placeholder-expected.txt:
 268 * platform/qt/editing/pasteboard/displaced-placeholder-expected.txt:
 269 * platform/qt/editing/pasteboard/merge-after-delete-1-expected.txt:
 270 * platform/qt/editing/pasteboard/merge-after-delete-2-expected.txt:
 271 * platform/qt/editing/pasteboard/merge-after-delete-expected.txt:
 272 * platform/qt/editing/pasteboard/merge-end-blockquote-expected.txt:
 273 * platform/qt/editing/pasteboard/merge-end-borders-expected.txt:
 274 * platform/qt/editing/pasteboard/merge-end-list-expected.txt:
 275 * platform/qt/editing/pasteboard/merge-end-table-expected.txt:
 276 * platform/qt/editing/pasteboard/paste-4035648-fix-expected.txt:
 277 * platform/qt/editing/pasteboard/paste-line-endings-001-expected.txt:
 278 * platform/qt/editing/pasteboard/paste-line-endings-006-expected.txt:
 279 * platform/qt/editing/pasteboard/paste-match-style-001-expected.txt:
 280 * platform/qt/editing/pasteboard/paste-match-style-002-expected.txt:
 281 * platform/qt/editing/pasteboard/paste-table-003-expected.txt:
 282 * platform/qt/editing/pasteboard/paste-table-cells-expected.txt:
 283 * platform/qt/editing/pasteboard/paste-text-004-expected.txt:
 284 * platform/qt/editing/pasteboard/paste-text-005-expected.txt:
 285 * platform/qt/editing/pasteboard/paste-text-006-expected.txt:
 286 * platform/qt/editing/pasteboard/paste-text-007-expected.txt:
 287 * platform/qt/editing/pasteboard/paste-text-008-expected.txt:
 288 * platform/qt/editing/pasteboard/paste-text-016-expected.txt:
 289 * platform/qt/editing/pasteboard/paste-text-019-expected.txt:
 290 * platform/qt/editing/pasteboard/paste-text-at-tabspan-003-expected.txt:
 291 * platform/qt/editing/pasteboard/pasting-object-expected.txt:
 292 * platform/qt/editing/pasteboard/smart-paste-007-expected.txt:
 293 * platform/qt/editing/pasteboard/smart-paste-008-expected.txt:
 294 * platform/qt/editing/pasteboard/undoable-fragment-removes-expected.txt:
 295 * platform/qt/editing/selection/move-between-blocks-no-001-expected.txt:
 296 * platform/qt/editing/selection/node-removal-1-expected.txt:
 297 * platform/qt/editing/selection/node-removal-2-expected.txt:
 298 * platform/qt/editing/selection/replace-selection-1-expected.txt:
 299 * platform/qt/editing/selection/select-all-iframe-expected.txt:
 300 * platform/qt/editing/style/create-block-for-style-001-expected.txt:
 301 * platform/qt/editing/style/create-block-for-style-002-expected.txt:
 302 * platform/qt/editing/style/create-block-for-style-003-expected.txt:
 303 * platform/qt/editing/style/create-block-for-style-004-expected.txt:
 304 * platform/qt/editing/style/create-block-for-style-007-expected.txt:
 305 * platform/qt/editing/style/create-block-for-style-009-expected.txt:
 306 * platform/qt/editing/style/create-block-for-style-010-expected.txt:
 307 * platform/qt/editing/style/create-block-for-style-011-expected.txt:
 308 * platform/qt/editing/style/create-block-for-style-012-expected.txt:
 309 * platform/qt/editing/style/create-block-for-style-013-expected.txt:
 310 * platform/qt/editing/style/designmode-expected.txt:
 311 * platform/qt/editing/style/relative-font-size-change-001-expected.txt:
 312 * platform/qt/editing/style/relative-font-size-change-002-expected.txt:
 313 * platform/qt/editing/style/smoosh-styles-001-expected.txt:
 314 * platform/qt/editing/style/smoosh-styles-003-expected.txt:
 315 * platform/qt/editing/style/style-3998892-fix-expected.txt:
 316 * platform/qt/editing/style/style-boundary-001-expected.txt:
 317 * platform/qt/editing/style/style-boundary-004-expected.txt:
 318 * platform/qt/editing/style/unbold-in-bold-expected.txt:
 319 * platform/qt/editing/undo/4063751-expected.txt:
 320 * platform/qt/editing/undo/redo-typing-001-expected.txt:
 321 * platform/qt/editing/undo/undo-combined-delete-boundary-expected.txt:
 322 * platform/qt/editing/undo/undo-combined-delete-expected.txt:
 323 * platform/qt/editing/undo/undo-delete-boundary-expected.txt:
 324 * platform/qt/editing/undo/undo-delete-expected.txt:
 325 * platform/qt/editing/undo/undo-forward-delete-boundary-expected.txt:
 326 * platform/qt/editing/undo/undo-forward-delete-expected.txt:
 327 * platform/qt/editing/undo/undo-misspellings-expected.txt:
 328 * platform/qt/editing/undo/undo-typing-001-expected.txt:
 329 * platform/qt/editing/unsupported-content/list-delete-001-expected.txt:
 330 * platform/qt/editing/unsupported-content/list-delete-003-expected.txt:
 331 * platform/qt/editing/unsupported-content/list-type-after-expected.txt:
 332 * platform/qt/editing/unsupported-content/list-type-before-expected.txt:
 333 * platform/qt/editing/unsupported-content/table-delete-001-expected.txt:
 334 * platform/qt/editing/unsupported-content/table-delete-002-expected.txt:
 335 * platform/qt/editing/unsupported-content/table-delete-003-expected.txt:
 336 * platform/qt/editing/unsupported-content/table-type-after-expected.txt:
 337 * platform/qt/editing/unsupported-content/table-type-before-expected.txt:
 338 * platform/qt/fast/dynamic/move-node-with-selection-expected.txt:
 339 * platform/qt/svg/custom/use-clipped-hit-expected.txt:
 340
13412011-09-26 Mihai Parparita <mihaip@chromium.org>
2342
3343 Chromium test expectations update.
95970

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.
95957

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
95957

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
95957

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:
95957

LayoutTests/editing/deleting/delete-by-word-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: 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 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
97EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
108EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
1310EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1411EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
1713EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1814EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 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
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 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
2116EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2217EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2318EDITING DELEGATE: shouldDeleteDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document
2419EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2520EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > DIV > BODY > HTML > #document to 10 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
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2821EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
29 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
3123EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3224EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
33 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
 25EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
3526EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3627EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
37 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 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
 28EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 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
3929EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4030EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4131Tests:
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 5 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
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > 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 4 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1511EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1612EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1713Tests:
95957

LayoutTests/editing/deleting/delete-cell-contents-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
1211This tests for a crasher when deleting contents of a table cell. <radr://problem/4845371>
95957

LayoutTests/editing/deleting/delete-ligature-002-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

LayoutTests/editing/deleting/delete-ligature-003-expected.txt

@@EDITING DELEGATE: shouldDeleteDOMRange:r
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING 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 2 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 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 2 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1918EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2019EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2120EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
2322EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2524EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 25EDITING 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 2 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2726EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2827EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2928This test tests whether the undo command works when the BackSpace key deletes the last character of a ligature "วั".
95957

LayoutTests/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
1110
95957

LayoutTests/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
1110
95957

LayoutTests/editing/deleting/merge-paragraph-into-blockquote-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 5 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document to 0 of #text > DIV > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 5 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document to 5 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > BODY > HTML > #document to 2 of DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > BLOCKQUOTE > DIV > BODY > HTML > #document to 5 of #text > BLOCKQUOTE > 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 deleting line break after blockquote.
1513WebKit should not cancel styles added by blockquote by those of document's default style.
95957

LayoutTests/editing/deleting/paragraph-in-preserveNewline-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
99EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of 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
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
2120EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2221EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2322EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 23EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2624EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2725EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2826EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
3331EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3432EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3533EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
36 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
37 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of PRE > DIV > BODY > HTML > #document to 0 of PRE > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3835EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3936EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
40 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4137EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
4238This tests for a bug where deleting a paragraph in preserveNewline text would introduce an extra line. You should see '\nbar' below.
4339
95957

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 0 of #text > DIV > B > DIV > BODY > HTML > #document to 2 of #text > DIV > 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.
95957

LayoutTests/editing/deleting/skip-virama-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

LayoutTests/editing/deleting/whitespace-pre-1-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING 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
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 69 of #text > 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 #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
1716EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
20 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 19EDITING 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 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2220EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2321EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2422EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
2725EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2826EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2927EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
30 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
31 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 28EDITING 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 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3229EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3330EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3531EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
3632This tests for a bug in endOfLine.
3733
95957

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>
95957

LayoutTests/editing/execCommand/crash-indenting-list-item-expected.txt

88| <li>
99| id="foo"
1010| "PASSED"
 11| <#selection-caret>
1112| "
1213"
1314| <script>
95957

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:
95957

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
95957

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"
95957

LayoutTests/editing/execCommand/format-block-with-braces-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 H1 > DIV > BODY > HTML > #document to 0 of H1 > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING 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
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
109This test uses FormatBlock with html brackets in the tag string passed to execCommand.
1110
95957

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>
95957

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.
95957

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.
95957

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.
95957

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".
95957

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.
95957

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.
95957

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.
95957

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.
95957

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.
95957

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.
95957

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.
95957

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.
95957

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".
95957

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".
95957

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.
95957

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>"
95957

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
95957

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.
95957

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.
95957

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.
95957

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:
95957

LayoutTests/editing/inserting/insert-3786362-fix-expected.txt

@@EDITING DELEGATE: shouldInsertNode:#docu
99EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 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
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1413This demonstrates a bug: copying an empty line that's implemented with a br doesn't put an interchange newline on the pasteboard. There should be two blank lines after the 'a'.
1514
95957

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
95957

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.
95957

LayoutTests/editing/inserting/insert-thai-characters-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 6 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
 19EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 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
2520EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2621EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 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
2923EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3024EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
31 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 25EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 7 of #text > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3326EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3427EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
35 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
36 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 28EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3729EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3830EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
39 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
40 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > 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
 31EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > 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
4132EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4233EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
43 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4535EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4636EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4737EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4838EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4939EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
50 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
51 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 40EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5241EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5342EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
54 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 6 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
 43EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 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
5644EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5745EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5846This test tests whether we can insert a Thai character after a Thai "prepend" character.
95957

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
95957

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 > DIV > DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 24 of #text > FONT > DIV > DIV > DIV > BODY > HTML > #document to 24 of #text > FONT > DIV > 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>
95957

LayoutTests/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
20 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2118EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
2219
2320
95957

LayoutTests/editing/pasteboard/copy-in-password-field-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldInsertText:[not modified] replacingDOMRange:range from 0 of #text > DIV > #shadow-root to 14 of #text > DIV > #shadow-root givenAction:WebViewInsertActionPasted
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > #shadow-root to 14 of #text > DIV > #shadow-root toDOMRange:range from 14 of #text > DIV > #shadow-root to 14 of #text > DIV > #shadow-root affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > #shadow-root to 0 of DIV > #shadow-root toDOMRange:range from 14 of #text > DIV > #shadow-root to 14 of #text > DIV > #shadow-root affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211This test verifies that copying is disabled for password fields by attempting to copy from a password field and paste into a textfield. If the test passes, you'll see a of 'PASS' message below, and the textfield will remain unmodified.
95957

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:
95957

LayoutTests/editing/pasteboard/insert-div-text-into-text-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: 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
 7EDITING 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
108EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1310EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1411This tests inserting a text wrapped in a div inside a text node.
1512| "There "
95957

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.
95957

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.
95957

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.
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING 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
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
95957

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 "
95957

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
95957

LayoutTests/editing/pasteboard/merge-end-5-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: 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1613EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1714Pasting a paragraph or less into a selection that spans multiple blocks should insert content into the block containing the start of the selection.
1815| <div>
95957

LayoutTests/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 > DIV > DIV > BODY > HTML > #document to 1 of #text > 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 > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210| "
1311These demonstrate 11475: the '\n's at the end of the fragment should be unrendered."
1412| <br>
95957

LayoutTests/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 > DIV > DIV > BODY > HTML > #document to 1 of #text > 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 > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210| "
1311These demonstrate 11475: the '\n's at the end of the fragment should be unrendered."
1412| <br>
95957

LayoutTests/editing/pasteboard/paste-into-anchor-text-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:range from 5 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 16 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 16 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 5 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document to 16 of #text > B > A > TD > TR > TBODY > TABLE > TD > TR > TBODY > TABLE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87
95957

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"
95957

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"
95957

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.
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING 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
 11EDITING 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
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1715
1816You should see "foo barbar baz" below:
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
5454EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
5555EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5656EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
57 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
58 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 57EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 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
5958EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6059EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6160EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
9696EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 6 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
9797EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9898EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
100 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 99EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
101100EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
102101EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
103102EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
95957

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 > P > BODY > HTML > #document to 5 of #text > B > FONT > P > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of P > BODY > HTML > #document to 2 of P > BODY > HTML > #document toDOMRange:range from 5 of #text > B > FONT > P > P > BODY > HTML > #document to 5 of #text > B > FONT > P > 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| "
95957

LayoutTests/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
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1412
1513
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
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
1313EDITING 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
 14EDITING 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
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1616EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1717EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
1818EDITING 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
1919EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2020EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2221EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
2322
2423
95957

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

@@EDITING DELEGATE: shouldInsertNode:#docu
44EDITING 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
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING 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
 7EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > 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
1412You should see aax\tz below:
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING 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
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING 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
 9EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
1513
1614You should see a\tax\t\tz below:
95957

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:
95957

LayoutTests/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
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
97EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
108The code in paste that prevents block nesting had a bug where the order of pasted paragraphs could be reversed.
119| "There should be an empty line between these two paragraphs."
95957

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
95957

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:
95957

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:
95957

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:
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
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
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: 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
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 > 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
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
1614EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1715EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
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:
95957

LayoutTests/editing/selection/5497643-expected.txt

1 ALERT: SUCCESS: The selection was cleared.
2 This 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.
 1ALERT: SUCCESS: Selection is set to position 2 of BODY.
 2This tests to make sure that a selection inside a textarea is updated when the textarea is removed from the document.
33
44
95957

LayoutTests/editing/selection/5497643.html

1 <p>This 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.</p>
 1<p>This tests to make sure that a selection inside a textarea is updated when the textarea is removed from the document.</p>
22<textarea id="textarea"></textarea>
33<script>
44if (window.layoutTestController)

@@if (window.layoutTestController)
66textarea = document.getElementById("textarea");
77textarea.setSelectionRange(0, 0);
88textarea.parentNode.removeChild(textarea);
9 if (window.getSelection().type != "None")
10  alert("FAILURE: There shouldn't be a selection.")
 9if (window.getSelection().type == 'Caret' &&
 10 window.getSelection().getRangeAt(0).startContainer == document.body &&
 11 window.getSelection().getRangeAt(0).startOffset == 2)
 12 alert("SUCCESS: Selection is set to position 2 of BODY.")
1113else
12  alert("SUCCESS: The selection was cleared.")
 14 alert("FAILURE: The selection is not set correctly after textarea was deleted.")
1315</script>
95957

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
 4PASS: Removing the parent of startContainer moved the offset from 2 to 0
 5PASS: Replacing nodeValue of startContainer moved the offset from 2 to 0
 6PASS: Replacing nodeValue of endContainer moved the offset from 3 to 0
77PASS: Appending " WebKit" to startContainer did not move selection
88PASS: Appending " WebKit" to endContainer did not move selection
9 PASS: Inserting " WebKit" to startContainer before the end point moved the offset from 2 to 9
 9PASS: Inserting " WebKit" to startContainer before the end point did not move selection
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
 13PASS: Removing text in startContainer containing the end point moved the offset from 2 to 1
 14PASS: Removing text in endContainer containing the end point moved the offset from 3 to 1
 15PASS: Removing text in startContainer containing the start point moved the offset from 2 to 0
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
 19PASS: Removing 3 characters at the beginning of startContainer moved the offset from 2 to 0
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
25 PASS: Replacing 2 characters in startContainer by 2 characters before the end point did not move selection
 23PASS: Replacing text in startContainer containing the end point moved the offset from 2 to 1
 24PASS: Replacing text in endContainer containing the end point moved the offset from 3 to 1
 25PASS: Replacing 2 characters in startContainer by 2 characters before the end point moved the offset from 2 to 0
2626PASS: Replacing 2 characters in endContainer by 2 characters before the end point did not move selection
27 PASS: Replacing 2 characters in startContainer by 1 characters before the end point moved the offset from 2 to 1
 27PASS: Replacing 2 characters in startContainer by 1 characters before the end point moved the offset from 2 to 0
2828PASS: Replacing 2 characters in endContainer by 1 characters before the end point moved the offset from 3 to 2
2929PASS: Replacing 2 characters in startContainer by 2 characters after the end point did not move selection
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
 33PASS: Removing the parent of startContainer moved the offset from 2 to 0
 34PASS: Replacing nodeValue of startContainer moved the offset from 2 to 0
 35PASS: Replacing nodeValue of endContainer moved the offset from 3 to 0
3636PASS: Appending " WebKit" to startContainer did not move selection
3737PASS: Appending " WebKit" to endContainer did not move selection
38 PASS: Inserting " WebKit" to startContainer before the end point moved the offset from 2 to 9
 38PASS: Inserting " WebKit" to startContainer before the end point did not move selection
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
 42PASS: Removing text in startContainer containing the end point moved the offset from 2 to 1
 43PASS: Removing text in endContainer containing the end point moved the offset from 3 to 1
 44PASS: Removing text in startContainer containing the start point moved the offset from 2 to 0
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
 48PASS: Removing 3 characters at the beginning of startContainer moved the offset from 2 to 0
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
54 PASS: Replacing 2 characters in startContainer by 2 characters before the end point did not move selection
 52PASS: Replacing text in startContainer containing the end point moved the offset from 2 to 1
 53PASS: Replacing text in endContainer containing the end point moved the offset from 3 to 1
 54PASS: Replacing 2 characters in startContainer by 2 characters before the end point moved the offset from 2 to 0
5555PASS: Replacing 2 characters in endContainer by 2 characters before the end point did not move selection
56 PASS: Replacing 2 characters in startContainer by 1 characters before the end point moved the offset from 2 to 1
 56PASS: Replacing 2 characters in startContainer by 1 characters before the end point moved the offset from 2 to 0
5757PASS: Replacing 2 characters in endContainer by 1 characters before the end point moved the offset from 3 to 2
5858PASS: Replacing 2 characters in startContainer by 2 characters after the end point did not move selection
5959PASS: Replacing 2 characters in endContainer by 2 characters after the end point did not move selection
95957

LayoutTests/editing/selection/character-data-mutation.html

@@function runTestPairs(actor, expectedSta
6060}
6161
6262function runTests() {
63  runTestPairs(function() { test.removeChild(test.firstChild); return 'Removing the parent of startContainer'; }, undefined, undefined, true);
64  runTestPairs(function(node, nodeName) { node.nodeValue = 'a'; return 'Replacing nodeValue of ' + nodeName; }, undefined, undefined);
 63 runTestPairs(function() { test.removeChild(test.firstChild); return 'Removing the parent of startContainer'; }, 0, undefined, true);
 64 runTestPairs(function(node, nodeName) { node.nodeValue = 'a'; return 'Replacing nodeValue of ' + nodeName; }, 0, 0);
6565 runTestPairs(function(node, nodeName) { node.appendData(' WebKit'); return 'Appending " WebKit" to ' + nodeName; }, 2, 3);
6666
6767 runTestPairs(function(node, nodeName) { node.insertData(2, 'WebKit ');
68  return 'Inserting " WebKit" to ' + nodeName + ' before the end point'; }, 9, 10);
 68 return 'Inserting " WebKit" to ' + nodeName + ' before the end point'; }, 2, 10);
6969 runTestPairs(function(node, nodeName) { node.insertData(3, 'WebKit ');
7070 return 'Inserting " WebKit" to ' + nodeName + ' after the end point'; }, 2, 3);
7171
7272 runTestPairs(function(node, nodeName) { node.deleteData(1, 4);
73  return 'Removing text in ' + nodeName + ' containing the end point'; }, undefined, undefined);
 73 return 'Removing text in ' + nodeName + ' containing the end point'; }, 1, 1);
7474 runTestPairs(function(node, nodeName) { node.deleteData(0, 3);
75  return 'Removing text in ' + nodeName + ' containing the start point'; }, undefined, 0);
 75 return 'Removing text in ' + nodeName + ' containing the start point'; }, 0, 0);
7676 runTestPairs(function(node, nodeName) { node.deleteData(0, 2);
7777 return 'Removing 2 characters in ' + nodeName + ' before the end point'; }, 0, 1);
7878 runTestPairs(function(node, nodeName) { node.deleteData(0, 3);
79  return 'Removing 3 characters at the beginning of ' + nodeName; }, undefined, 0);
 79 return 'Removing 3 characters at the beginning of ' + nodeName; }, 0, 0);
8080 runTestPairs(function(node, nodeName) { node.deleteData(3, 2);
8181 return 'Removing text in ' + nodeName + ' after the end point'; }, 2, 3);
8282
8383 runTestPairs(function(node, nodeName) { node.replaceData(1, 4, '1234');
84  return 'Replacing text in ' + nodeName + ' containing the end point'; }, undefined, undefined);
 84 return 'Replacing text in ' + nodeName + ' containing the end point'; }, 1, 1);
8585 runTestPairs(function(node, nodeName) { node.replaceData(0, 2, '12');
86  return 'Replacing 2 characters in ' + nodeName + ' by 2 characters before the end point'; }, 2, 3);
 86 return 'Replacing 2 characters in ' + nodeName + ' by 2 characters before the end point'; }, 0, 3);
8787 runTestPairs(function(node, nodeName) { node.replaceData(0, 2, '1');
88  return 'Replacing 2 characters in ' + nodeName + ' by 1 characters before the end point'; }, 1, 2);
 88 return 'Replacing 2 characters in ' + nodeName + ' by 1 characters before the end point'; }, 0, 2);
8989 runTestPairs(function(node, nodeName) { node.replaceData(3, 2, '12');
9090 return 'Replacing 2 characters in ' + nodeName + ' by 2 characters after the end point'; }, 2, 3);
9191}
95957

LayoutTests/editing/selection/document-mutation-expected.txt

 1This test ensures WebKit adjusts the selection under document mutation.
 2
 3Examples are from:
 4http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-Mutation
 5
 6Base is first
 7
 8Insertion tests:
 9PASS: selection is (24, 32) "Y blah i"
 10PASS: selection is (11, 32) "inserted textY blah i"
 11PASS: selection is (11, 32) "Yinserted text blah i"
 12PASS: selection is (11, 32) "Y blahinserted text i"
 13PASS: selection is (11, 19) "Y blah i"
 14
 15Deletion tests:
 16PASS: selection is (5, 13) "Range i"
 17PASS: selection is (5, 5) ""
 18PASS: selection is (5, 15) "he Range i"
 19PASS: selection is (1, 1) ""
 20
 21
 22Extent is first
 23
 24Insertion tests:
 25PASS: selection is (24, 32) "Y blah i"
 26PASS: selection is (11, 32) "inserted textY blah i"
 27PASS: selection is (11, 32) "Yinserted text blah i"
 28PASS: selection is (11, 32) "Y blahinserted text i"
 29PASS: selection is (11, 19) "Y blah i"
 30
 31Deletion tests:
 32PASS: selection is (5, 13) "Range i"
 33PASS: selection is (5, 5) ""
 34PASS: selection is (5, 15) "he Range i"
 35PASS: selection is (1, 1) ""
 36
 37DONE
 38
0

LayoutTests/editing/selection/document-mutation.html

 1<!DOCTYPE html>
 2<html>
 3<body>
 4<p>This test ensures WebKit adjusts the selection under document mutation.</p>
 5<p> Examples are from:<br> http://www.w3.org/TR/DOM-Level-2-Traversal-Range/ranges.html#Level-2-Range-Mutation</p>
 6<div id="test" contenteditable></div>
 7<pre>
 8<script>
 9
 10var test = document.getElementById('test');
 11test.focus();
 12
 13if (window.layoutTestController)
 14 layoutTestController.dumpAsText();
 15
 16var baseIsFirst = true;
 17var selection = window.getSelection();
 18
 19function checkResult(expectedStartOffset, expectedEndOffset) {
 20 var actualStartOffset = selection.getRangeAt(0).startOffset;
 21 var actualEndOffset = selection.getRangeAt(0).endOffset;
 22 if (actualStartOffset == expectedStartOffset && actualEndOffset == expectedEndOffset)
 23 document.write('PASS: selection is (' + expectedStartOffset + ', ' + expectedEndOffset + ') "' + selection + '"\n');
 24 else
 25 document.write('FAIL: selection is (' + actualStartOffset + ', ' + actualEndOffset + ') "' + selection +
 26 '" and expected selection is ' + '(' + expectedStartOffset + ', ' + expectedEndOffset + ')\n');
 27}
 28
 29function setSelectionRange(startContainer, startOffset, endContainer, endOffset) {
 30 if (baseIsFirst)
 31 selection.setBaseAndExtent(startContainer, startOffset, endContainer, endOffset);
 32 else
 33 selection.setBaseAndExtent(endContainer, endOffset, startContainer, startOffset);
 34}
 35
 36function runInsertionTest(actor, expectedStartOffset, expectedEndOffset) {
 37 test.innerHTML = '<p>Abcd efgh XY blah ijkl</p>';
 38
 39 // Select "Y blah i"
 40 setSelectionRange(test.firstChild.firstChild, 11, test.firstChild.firstChild, 19);
 41 actor(test.firstChild.firstChild);
 42 checkResult(expectedStartOffset, expectedEndOffset);
 43}
 44
 45function runDeletionTest(actor, expectedStartOffset, expectedEndOffset) {
 46 test.innerHTML = '<p>Abcd efgh The Range ijkl</p>';
 47
 48 // Select "he Range i"
 49 setSelectionRange(test.firstChild.firstChild, 11, test.firstChild.firstChild, 21);
 50 actor(test.firstChild.firstChild);
 51 checkResult(expectedStartOffset, expectedEndOffset);
 52}
 53
 54function deleteNodeContainingSelection(expectedStartOffset, expectedEndOffset) {
 55 test.innerHTML = '<p>Abcd <em>efgh The Range ij</em>kl</p>';
 56
 57 // Select "he Range i"
 58 setSelectionRange(test.firstChild.firstChild.nextSibling.firstChild, 6, test.firstChild.firstChild.nextSibling.firstChild, 16);
 59 test.firstChild.removeChild(test.firstChild.firstChild.nextSibling);
 60 checkResult(expectedStartOffset, expectedEndOffset);
 61}
 62
 63function runTests() {
 64 document.write('Insertion tests:\n');
 65 runInsertionTest(function(node) { node.insertData(10, 'inserted text'); }, 24, 32);
 66 runInsertionTest(function(node) { node.insertData(11, 'inserted text'); }, 11, 32);
 67 runInsertionTest(function(node) { node.insertData(12, 'inserted text'); }, 11, 32);
 68 runInsertionTest(function(node) { node.insertData(17, 'inserted text'); }, 11, 32);
 69 runInsertionTest(function(node) { node.insertData(19, 'inserted text'); }, 11, 19);
 70
 71 document.write('\nDeletion tests:\n');
 72 runDeletionTest(function(node) { node.deleteData(5, 8); }, 5, 13);
 73 runDeletionTest(function(node) { node.deleteData(5, 17); }, 5, 5);
 74 runDeletionTest(function(node) { node.deleteData(5, 6); }, 5, 15);
 75 deleteNodeContainingSelection(1, 1);
 76}
 77
 78document.write('Base is first\n\n');
 79runTests();
 80
 81baseIsFirst = false;
 82
 83document.write('\n\nExtent is first\n\n');
 84runTests();
 85
 86test.style.display = 'none';
 87document.write('\nDONE');
 88</script>
 89</pre>
 90</body>
 91</html>
0

LayoutTests/editing/selection/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/editing/selection/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>
 11if (window.layoutTestController)
 12 layoutTestController.dumpAsText();
 13
 14var it = document.getElementById("it");
 15it.focus();
 16
 17function resetIt(event) {
 18 var it = document.getElementById("it");
 19 it.innerText = '';
 20 it.focus();
 21}
 22
 23var lastTypedChar = '';
 24function typedChar(event) {
 25 lastTypedChar = String.fromCharCode(event.keyCode);
 26}
 27
 28function checkResult(event) {
 29 if (lastTypedChar != '') {
 30 var text = document.getElementById("it").innerText;
 31 if (text != lastTypedChar)
 32 document.getElementById("result").innerHTML = "FAIL: editable div content is '" + text + "' and it should be '" + lastTypedChar + "'" ;
 33 else
 34 document.getElementById("result").innerHTML = "PASS";
 35 }
 36}
 37
 38if (window.eventSender)
 39 eventSender.keyDown("a");
 40</script>
 41</body>
 42</html>
0

LayoutTests/editing/selection/regional-indicators.html

@@shouldBe("document.getSelection().toStri
2020
2121div.innerText = "🇯🇵🇯🇵";
2222afterLastIndicator.setStart(div.firstChild, 8);
 23getSelection().removeAllRanges();
2324document.getSelection().addRange(afterLastIndicator);
2425document.getSelection().modify("extend", "left", "character");
2526shouldBe("document.getSelection().toString()", "'🇯🇵'");
95957

LayoutTests/editing/style/remove-underline-from-stylesheet-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 6 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
 19EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 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
2520EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2621EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
29 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 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
3123EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3224EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3325EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
35 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
36 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3727EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3828EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
39 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
40 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 29EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4231EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
43 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > 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
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > 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
4533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4634EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
47 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
48 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 35EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4936EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5037EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
51 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
52 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 38EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5339EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5440EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
55 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
56 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 41EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5742EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5843EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
59 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
60 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
61 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
62 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6345EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6446EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6547EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
67 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
68 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 15 of #text > DIV > 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
 48EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > 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
6949EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7050EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
71 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
72 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 51EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > DIV > BODY > HTML > #document to 15 of #text > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7352EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7453EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
75 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 54EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7755EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7856EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
79 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
80 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 57EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8158EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8259EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
83 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
84 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document toDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 60EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document toDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8561EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8662EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 63EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8964EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9065EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9166EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
9671EDITING 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
9772EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9873EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
99 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10074EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification
10175This 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).
10276| "xxxxxx "
95957

LayoutTests/editing/style/typing-style-003-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING 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
 14EDITING 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
1915EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2016EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > 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
 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 2 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2318EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2419EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2721EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2822EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2923EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 EDITING 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
 24EDITING 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
3325EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3426EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
35 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
36 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > I > B > DIV > BODY > HTML > #document to 2 of #text > I > B > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > I > B > DIV > BODY > HTML > #document to 2 of #text > I > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 27EDITING 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 2 of #text > I > B > DIV > BODY > HTML > #document to 2 of #text > I > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3728EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3829EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
39 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
40 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > I > B > DIV > BODY > HTML > #document to 3 of #text > I > B > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > I > B > DIV > BODY > HTML > #document to 3 of #text > I > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 30EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > I > B > DIV > BODY > HTML > #document to 2 of #text > I > B > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > I > B > DIV > BODY > HTML > #document to 3 of #text > I > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4232EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4333EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING 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
 34EDITING 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
4735EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4836EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
49 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
50 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > I > DIV > BODY > HTML > #document to 2 of #text > I > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > I > DIV > BODY > HTML > #document to 2 of #text > I > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 37EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > I > DIV > BODY > HTML > #document to 1 of #text > I > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > I > DIV > BODY > HTML > #document to 2 of #text > I > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5138EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5239EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
53 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
54 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > I > DIV > BODY > HTML > #document to 3 of #text > I > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > I > DIV > BODY > HTML > #document to 3 of #text > I > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 40EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > I > DIV > BODY > HTML > #document to 2 of #text > I > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > I > DIV > BODY > HTML > #document to 3 of #text > I > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5541EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5642EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5743EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
58 EDITING 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
 44EDITING 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
6145EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6246EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
63 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
64 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 47EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
6548EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6649EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
67 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
68 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 50EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
6951EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7052EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7153xxxxxxxxxxxxxxx
95957

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.
95957

LayoutTests/editing/undo/replace-text-in-node-preserving-markers-crash-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
1414EDITING DELEGATE: shouldDeleteDOMRange:range from 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document to 6 of #text > SYMBOL > UL > DIV > BODY > HTML > #document
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1616EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SYMBOL > UL > DIV > BODY > HTML > #document to 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document to 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SYMBOL > UL > DIV > BODY > HTML > #document to 4 of #text > SYMBOL > UL > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document to 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2118EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2219EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2320EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > SYMBOL > UL > DIV > BODY > HTML > #document to 5 of #text > SYMBOL > UL > DIV > BODY > HTML > #document
95957

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.
95957

LayoutTests/platform/qt/editing/deleting/collapse-whitespace-3587601-fix-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1817EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document

@@EDITING DELEGATE: webViewDidChangeSelect
2423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2524EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2625EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2927EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3028EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3129EDITING DELEGATE: shouldDeleteDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document

@@EDITING DELEGATE: webViewDidChangeSelect
4543EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4644EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4745EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document
48 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
49 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 46EDITING 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
5047EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5148EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5249layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChange:WebVi
2424EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document
2525EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2626EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of SPAN > DIV > BODY > HTML > #document to 4 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
28 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2927EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3028layer at (0,0) size 800x600
3129 RenderView at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
2626EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2727EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document
2828EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
29 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of SPAN > DIV > BODY > HTML > #document to 4 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 29EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of SPAN > DIV > BODY > HTML > #document to 4 of SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of SPAN > DIV > BODY > HTML > #document to 4 of SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3231EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3332layer at (0,0) size 800x600
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
1818EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1919EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document to 1 of #text > BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document
2020EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document to 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document to 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document to 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2322EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2423EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2524EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of SPAN > DIV > BODY > HTML > #document to 0 of BLOCKQUOTE > SPAN > DIV > BODY > HTML > #document
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 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
 25EDITING 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
2826EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2927EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3028layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
99EDITING 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
 10EDITING 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
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1313layer at (0,0) size 820x584
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document
99EDITING 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
 10EDITING 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
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1313layer at (0,0) size 820x584
95957

LayoutTests/platform/qt/editing/deleting/delete-and-undo-expected.txt

@@EDITING DELEGATE: shouldDeleteDOMRange:r
3030EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3232EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
33 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 33EDITING 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 9 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3534EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3635EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3736EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
3030EDITING DELEGATE: shouldDeleteDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > DIV > BODY > HTML > #document
3131EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3232EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING 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
 33EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
3634EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3735EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3836layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
3131EDITING DELEGATE: shouldDeleteDOMRange:range from 8 of #text > DIV > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > DIV > BODY > HTML > #document
3232EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3333EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING 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
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
3735EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3836EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3937layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
3335EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3436EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3537layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > 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
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-021-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 0 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > 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
95957

LayoutTests/platform/qt/editing/deleting/delete-block-merge-contents-022-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 > 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 0 of #text > DIV > DIV > BODY > HTML > #document to 0 of DIV > 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
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: shouldDeleteDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 10 of #text > SPAN > DIV > BODY > HTML > #document
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 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 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1213EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1314EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1415layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
6262EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6363EDITING DELEGATE: shouldDeleteDOMRange:range from 58 of #text > SPAN > DIV > BODY > HTML > #document to 59 of #text > SPAN > DIV > BODY > HTML > #document
6464EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
65 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 58 of #text > SPAN > DIV > BODY > HTML > #document to 58 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6665EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6766EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6867layer at (0,0) size 820x584
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > LI > UL > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of UL > DIV > BODY > HTML > #document to 4 of UL > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > LI > UL > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110EDITING DELEGATE: shouldDeleteDOMRange:range from 2 of #text > LI > UL > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > BODY > HTML > #document

@@EDITING DELEGATE: webViewDidChangeSelect
1817EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1918EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > LI > UL > DIV > BODY > HTML > #document to 1 of #text > LI > UL > DIV > BODY > HTML > #document
2019EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 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
 20EDITING 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 LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2523EDITING DELEGATE: shouldDeleteDOMRange:range from 3 of #text > LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 3 of #text > LI > UL > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of UL > DIV > BODY > HTML > #document to 2 of UL > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > LI > UL > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2825EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2926EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3027layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
2626EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2727EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > LI > UL > DIV > BODY > HTML > #document to 1 of #text > LI > UL > DIV > BODY > HTML > #document
2828EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
29 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 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
 29EDITING 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 LI > UL > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3231EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3332layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > 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
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1311layer at (0,0) size 800x600
1412 RenderView at (0,0) size 800x600
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
77EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > 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
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1210EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1311layer at (0,0) size 800x600
1412 RenderView at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChange:WebVi
1919EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > SPAN > DIV > BODY > HTML > #document to 1 of #text > SPAN > DIV > BODY > HTML > #document
2020EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2121EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2523layer at (0,0) size 800x600
2624 RenderView at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
3333EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3434EDITING DELEGATE: shouldDeleteDOMRange:range from 2 of #text > B > SPAN > DIV > BODY > HTML > #document to 4 of #text > B > SPAN > DIV > BODY > HTML > #document
3535EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
36 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 36EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 0 of #text > B > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3737EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3838EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3939layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/deleting/forward-delete-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: shouldChangeSelectedDOMRange:range from 0 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
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > BODY > HTML > #document
1614EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

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
95957

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
95957

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
95957

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
95957

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
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
95957

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
95957

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

@@EDITING DELEGATE: shouldChangeSelectedDO
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
77EDITING 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1110layer at (0,0) size 800x600
95957

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
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
95957

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
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1211layer at (0,0) size 800x600
95957

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
95957

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

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 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
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
99layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 1 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
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
99layer at (0,0) size 800x600
95957

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
95957

LayoutTests/platform/qt/editing/execCommand/find-after-replace-expected.txt

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

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: shouldDeleteDOMRange:range from 8 of #text > BODY > HTML > #document to 11 of #text > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document toDOMRange:range from 8 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > BODY > HTML > #document to 7 of #text > BODY > HTML > #document toDOMRange:range from 8 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 8 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document givenAction:WebViewInsertActionPasted
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: shouldDeleteDOMRange:range from 8 of #text > BODY > HTML > #document to 11 of #text > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document toDOMRange:range from 8 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > BODY > HTML > #document to 7 of #text > BODY > HTML > #document toDOMRange:range from 8 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1211EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1312EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 8 of #text > BODY > HTML > #document to 8 of #text > BODY > HTML > #document givenAction:WebViewInsertActionPasted
95957

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
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/inserting/4278698-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:range from 2 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > PRE > DIV > BODY > HTML > #document to 2 of #text > PRE > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > PRE > DIV > BODY > HTML > #document to 3 of #text > PRE > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/editing-empty-divs-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:range from 0 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
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98EDITING DELEGATE: shouldEndEditingInDOMRange:range from 0 of DIV > BODY > HTML > #document to 1 of DIV > BODY > HTML > #document
95957

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
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > BODY > HTML > #document to 2 of #text > BODY > HTML > #document toDOMRange:range from 2 of #text > BODY > HTML > #document to 2 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > BODY > HTML > #document to 1 of #text > BODY > HTML > #document toDOMRange:range from 2 of #text > BODY > HTML > #document to 2 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > BODY > HTML > #document to 3 of #text > BODY > HTML > #document toDOMRange:range from 3 of #text > BODY > HTML > #document to 3 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > BODY > HTML > #document to 2 of #text > BODY > HTML > #document toDOMRange:range from 3 of #text > BODY > HTML > #document to 3 of #text > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2016EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2117EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2218layer at (0,0) size 800x600
95957

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
95957

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
95957

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
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
2117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2319layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of SPAN > DIV > BODY > HTML > #document to 2 of 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
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
95957

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
95957

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

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of SPAN > DIV > BODY > HTML > #document to 1 of 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
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/insert-br-007-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:range from 1 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
129EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1310layer at (0,0) size 800x600
1411 RenderView at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of DIV > BODY > HTML > #document to 1 of 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
107EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
118EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
129layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/insert-br-at-tabspan-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 3 of SPAN > DIV > BODY > HTML > #document to 3 of SPAN > 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:range from 0 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
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of SPAN > DIV > BODY > HTML > #document to 3 of 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
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
95957

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
95957

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
95957

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
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
1513EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1715layer at (0,0) size 800x600
95957

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
95957

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

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidBeginEditing
33EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
95957

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
95957

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
95957

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
95957

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
95957

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
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document toDOMRange:range from 2 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document toDOMRange:range from 2 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2421EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2522EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document toDOMRange:range from 3 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 23EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document toDOMRange:range from 3 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2824EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2925EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3026EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document toDOMRange:range from 0 of P > BODY > HTML > #document to 0 of P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE

@@EDITING DELEGATE: webViewDidChange:WebVi
3329EDITING 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
3430EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3531EDITING 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
 32EDITING 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
3833EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3934EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
40 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
41 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document toDOMRange:range from 2 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 35EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > P > BODY > HTML > #document to 1 of #text > P > BODY > HTML > #document toDOMRange:range from 2 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4236EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4337EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
44 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
45 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document toDOMRange:range from 3 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 38EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > P > BODY > HTML > #document to 2 of #text > P > BODY > HTML > #document toDOMRange:range from 3 of #text > P > BODY > HTML > #document to 3 of #text > P > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4639EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4740EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4841layer at (0,0) size 800x600
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/inserting/insert-space-in-empty-doc-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1916layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/insert-text-at-tabspan-001-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: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
 5EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/inserting/typing-001-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:range from 0 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
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING 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
 7EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > 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:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
1411EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1512EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2016EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2117EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 18EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2419EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2520EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 8 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > SPAN > DIV > BODY > HTML > #document to 8 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > SPAN > DIV > BODY > HTML > #document to 8 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2822EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2923EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3024EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3125EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > SPAN > DIV > BODY > HTML > #document to 11 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > SPAN > DIV > BODY > HTML > #document to 11 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > SPAN > DIV > BODY > HTML > #document to 10 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > SPAN > DIV > BODY > HTML > #document to 11 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3427EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3528EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
36 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
37 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > SPAN > DIV > BODY > HTML > #document to 12 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > SPAN > DIV > BODY > HTML > #document to 12 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 29EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > SPAN > DIV > BODY > HTML > #document to 11 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > SPAN > DIV > BODY > HTML > #document to 12 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3830EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3931EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
40 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
41 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > SPAN > DIV > BODY > HTML > #document to 13 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > SPAN > DIV > BODY > HTML > #document to 13 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > SPAN > DIV > BODY > HTML > #document to 12 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > SPAN > DIV > BODY > HTML > #document to 13 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4233EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4334EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4435layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/typing-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:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1412EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1513EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1815EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1916EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2017layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/typing-003-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 1 of #text > DIV > BODY > HTML > #document to 1 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > BODY > HTML > #document to 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 of #text > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2317EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2418EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2519EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 6 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
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > DIV > BODY > HTML > #document to 4 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
2921EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3022EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
31 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
 23EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 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
3524EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3625EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3726EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
39 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
40 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 27EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4128EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4229EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
43 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 30EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > DIV > BODY > HTML > #document to 8 of #text > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4531EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4632EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
47 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
48 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
49 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
50 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 10 of #text > DIV > 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
 33EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > 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
5134EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5235EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5336EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
54 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
56 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 37EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > DIV > BODY > HTML > #document to 9 of #text > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5738EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5839EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
59 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
60 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 40EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > BODY > HTML > #document to 11 of #text > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6141EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6242EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
63 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
64 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 43EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > BODY > HTML > #document to 12 of #text > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6544EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6645EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
67 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
68 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 46EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6947EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7048EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
71 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
72 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
73 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
74 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 15 of #text > DIV > 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
 49EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > 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
7550EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7651EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7752EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
78 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
79 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
80 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 53EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8154EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8255EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
83 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
84 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 56EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8557EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8658EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 59EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > DIV > BODY > HTML > #document to 17 of #text > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8960EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9061EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
91 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
92 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document toDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 62EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 18 of #text > DIV > BODY > HTML > #document to 18 of #text > DIV > BODY > HTML > #document toDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9363EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9464EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
95 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
96 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 65EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 19 of #text > DIV > BODY > HTML > #document to 19 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9766EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9867EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
99 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
100 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document toDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 68EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
10169EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10270EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
103 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
104 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
105 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
106 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 22 of #text > DIV > BODY > HTML > #document toDOMRange:range from 22 of #text > DIV > BODY > HTML > #document to 22 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 71EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document toDOMRange:range from 22 of #text > DIV > BODY > HTML > #document to 22 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
10772EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10873EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10974EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
110 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
111 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
112 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 22 of #text > DIV > BODY > HTML > #document to 23 of #text > DIV > BODY > HTML > #document toDOMRange:range from 23 of #text > DIV > BODY > HTML > #document to 23 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 75EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document toDOMRange:range from 23 of #text > DIV > BODY > HTML > #document to 23 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
11376EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11477EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
115 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
116 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 23 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
 78EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 23 of #text > DIV > BODY > HTML > #document to 23 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
11779EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11880EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
119 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
120 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 24 of #text > DIV > BODY > HTML > #document to 25 of #text > DIV > BODY > HTML > #document toDOMRange:range from 25 of #text > DIV > BODY > HTML > #document to 25 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 81EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 24 of #text > DIV > BODY > HTML > #document to 24 of #text > DIV > BODY > HTML > #document toDOMRange:range from 25 of #text > DIV > BODY > HTML > #document to 25 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
12182EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12283EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
123 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
124 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 25 of #text > DIV > BODY > HTML > #document to 26 of #text > DIV > BODY > HTML > #document toDOMRange:range from 26 of #text > DIV > BODY > HTML > #document to 26 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 84EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 25 of #text > DIV > BODY > HTML > #document to 25 of #text > DIV > BODY > HTML > #document toDOMRange:range from 26 of #text > DIV > BODY > HTML > #document to 26 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
12585EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12686EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
127 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
128 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 26 of #text > DIV > BODY > HTML > #document to 27 of #text > DIV > BODY > HTML > #document toDOMRange:range from 27 of #text > DIV > BODY > HTML > #document to 27 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 87EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 26 of #text > DIV > BODY > HTML > #document to 26 of #text > DIV > BODY > HTML > #document toDOMRange:range from 27 of #text > DIV > BODY > HTML > #document to 27 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
12988EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13089EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
131 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
132 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
133 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
134 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 27 of #text > DIV > BODY > HTML > #document to 28 of #text > DIV > BODY > HTML > #document toDOMRange:range from 28 of #text > DIV > BODY > HTML > #document to 28 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 90EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 27 of #text > DIV > BODY > HTML > #document to 27 of #text > DIV > BODY > HTML > #document toDOMRange:range from 28 of #text > DIV > BODY > HTML > #document to 28 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
13591EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
13692EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
13793EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
138 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
139 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
140 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 28 of #text > DIV > BODY > HTML > #document to 29 of #text > DIV > BODY > HTML > #document toDOMRange:range from 29 of #text > DIV > BODY > HTML > #document to 29 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 94EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 27 of #text > DIV > BODY > HTML > #document to 27 of #text > DIV > BODY > HTML > #document toDOMRange:range from 29 of #text > DIV > BODY > HTML > #document to 29 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
14195EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14296EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
143 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
144 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 29 of #text > DIV > BODY > HTML > #document to 30 of #text > DIV > BODY > HTML > #document toDOMRange:range from 30 of #text > DIV > BODY > HTML > #document to 30 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 97EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 29 of #text > DIV > BODY > HTML > #document to 29 of #text > DIV > BODY > HTML > #document toDOMRange:range from 30 of #text > DIV > BODY > HTML > #document to 30 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
14598EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14699EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
147 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
148 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 30 of #text > DIV > BODY > HTML > #document to 31 of #text > DIV > BODY > HTML > #document toDOMRange:range from 31 of #text > DIV > BODY > HTML > #document to 31 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 100EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 30 of #text > DIV > BODY > HTML > #document to 30 of #text > DIV > BODY > HTML > #document toDOMRange:range from 31 of #text > DIV > BODY > HTML > #document to 31 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
149101EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
150102EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
151 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
152 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 31 of #text > DIV > BODY > HTML > #document to 32 of #text > DIV > BODY > HTML > #document toDOMRange:range from 32 of #text > DIV > BODY > HTML > #document to 32 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 103EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 31 of #text > DIV > BODY > HTML > #document to 31 of #text > DIV > BODY > HTML > #document toDOMRange:range from 32 of #text > DIV > BODY > HTML > #document to 32 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
153104EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
154105EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
155 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
156 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 32 of #text > DIV > BODY > HTML > #document to 33 of #text > DIV > BODY > HTML > #document toDOMRange:range from 33 of #text > DIV > BODY > HTML > #document to 33 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 106EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 32 of #text > DIV > BODY > HTML > #document to 32 of #text > DIV > BODY > HTML > #document toDOMRange:range from 33 of #text > DIV > BODY > HTML > #document to 33 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
157107EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
158108EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
159 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
160 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 33 of #text > DIV > BODY > HTML > #document to 34 of #text > DIV > BODY > HTML > #document toDOMRange:range from 34 of #text > DIV > BODY > HTML > #document to 34 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 109EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 33 of #text > DIV > BODY > HTML > #document to 33 of #text > DIV > BODY > HTML > #document toDOMRange:range from 34 of #text > DIV > BODY > HTML > #document to 34 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
161110EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
162111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
163 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
164 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
165 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
166 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 34 of #text > DIV > BODY > HTML > #document to 35 of #text > DIV > BODY > HTML > #document toDOMRange:range from 35 of #text > DIV > BODY > HTML > #document to 35 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 112EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 34 of #text > DIV > BODY > HTML > #document to 34 of #text > DIV > BODY > HTML > #document toDOMRange:range from 35 of #text > DIV > BODY > HTML > #document to 35 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
167113EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
168114EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
169115EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
170 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
171 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
172 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 35 of #text > DIV > BODY > HTML > #document to 36 of #text > DIV > BODY > HTML > #document toDOMRange:range from 36 of #text > DIV > BODY > HTML > #document to 36 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 116EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 34 of #text > DIV > BODY > HTML > #document to 34 of #text > DIV > BODY > HTML > #document toDOMRange:range from 36 of #text > DIV > BODY > HTML > #document to 36 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
173117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
174118EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
175 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
176 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 36 of #text > DIV > BODY > HTML > #document to 37 of #text > DIV > BODY > HTML > #document toDOMRange:range from 37 of #text > DIV > BODY > HTML > #document to 37 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 119EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 36 of #text > DIV > BODY > HTML > #document to 36 of #text > DIV > BODY > HTML > #document toDOMRange:range from 37 of #text > DIV > BODY > HTML > #document to 37 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
177120EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
178121EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
179 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
180 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 37 of #text > DIV > BODY > HTML > #document to 38 of #text > DIV > BODY > HTML > #document toDOMRange:range from 38 of #text > DIV > BODY > HTML > #document to 38 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 122EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 37 of #text > DIV > BODY > HTML > #document to 37 of #text > DIV > BODY > HTML > #document toDOMRange:range from 38 of #text > DIV > BODY > HTML > #document to 38 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
181123EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
182124EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
183 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
184 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
185 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
186 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 38 of #text > DIV > BODY > HTML > #document to 39 of #text > DIV > BODY > HTML > #document toDOMRange:range from 39 of #text > DIV > BODY > HTML > #document to 39 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 125EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 38 of #text > DIV > BODY > HTML > #document to 38 of #text > DIV > BODY > HTML > #document toDOMRange:range from 39 of #text > DIV > BODY > HTML > #document to 39 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
187126EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
188127EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
189128EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
190 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
191 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
192 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 39 of #text > DIV > BODY > HTML > #document to 40 of #text > DIV > BODY > HTML > #document toDOMRange:range from 40 of #text > DIV > BODY > HTML > #document to 40 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 129EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 38 of #text > DIV > BODY > HTML > #document to 38 of #text > DIV > BODY > HTML > #document toDOMRange:range from 40 of #text > DIV > BODY > HTML > #document to 40 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
193130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
194131EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
195 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
196 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 40 of #text > DIV > BODY > HTML > #document to 41 of #text > DIV > BODY > HTML > #document toDOMRange:range from 41 of #text > DIV > BODY > HTML > #document to 41 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 132EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 40 of #text > DIV > BODY > HTML > #document to 40 of #text > DIV > BODY > HTML > #document toDOMRange:range from 41 of #text > DIV > BODY > HTML > #document to 41 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
197133EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
198134EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
199 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
200 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
201 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
202 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 41 of #text > DIV > BODY > HTML > #document to 42 of #text > DIV > BODY > HTML > #document toDOMRange:range from 42 of #text > DIV > BODY > HTML > #document to 42 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 135EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 41 of #text > DIV > BODY > HTML > #document to 41 of #text > DIV > BODY > HTML > #document toDOMRange:range from 42 of #text > DIV > BODY > HTML > #document to 42 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
203136EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
204137EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
205138EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
206 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
207 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
208 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 42 of #text > DIV > BODY > HTML > #document to 43 of #text > DIV > BODY > HTML > #document toDOMRange:range from 43 of #text > DIV > BODY > HTML > #document to 43 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 139EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 41 of #text > DIV > BODY > HTML > #document to 41 of #text > DIV > BODY > HTML > #document toDOMRange:range from 43 of #text > DIV > BODY > HTML > #document to 43 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
209140EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
210141EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
211 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
212 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 43 of #text > DIV > BODY > HTML > #document to 44 of #text > DIV > BODY > HTML > #document toDOMRange:range from 44 of #text > DIV > BODY > HTML > #document to 44 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 142EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 43 of #text > DIV > BODY > HTML > #document to 43 of #text > DIV > BODY > HTML > #document toDOMRange:range from 44 of #text > DIV > BODY > HTML > #document to 44 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
213143EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
214144EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
215 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
216 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 44 of #text > DIV > BODY > HTML > #document to 45 of #text > DIV > BODY > HTML > #document toDOMRange:range from 45 of #text > DIV > BODY > HTML > #document to 45 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 145EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 44 of #text > DIV > BODY > HTML > #document to 44 of #text > DIV > BODY > HTML > #document toDOMRange:range from 45 of #text > DIV > BODY > HTML > #document to 45 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
217146EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
218147EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
219 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
220 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 45 of #text > DIV > BODY > HTML > #document to 46 of #text > DIV > BODY > HTML > #document toDOMRange:range from 46 of #text > DIV > BODY > HTML > #document to 46 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 148EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 45 of #text > DIV > BODY > HTML > #document to 45 of #text > DIV > BODY > HTML > #document toDOMRange:range from 46 of #text > DIV > BODY > HTML > #document to 46 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
221149EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
222150EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
223 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
224 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
225 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
226 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 46 of #text > DIV > BODY > HTML > #document to 47 of #text > DIV > BODY > HTML > #document toDOMRange:range from 47 of #text > DIV > BODY > HTML > #document to 47 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 151EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 46 of #text > DIV > BODY > HTML > #document to 46 of #text > DIV > BODY > HTML > #document toDOMRange:range from 47 of #text > DIV > BODY > HTML > #document to 47 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
227152EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
228153EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
229154EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
230 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
231 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
232 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 47 of #text > DIV > BODY > HTML > #document to 48 of #text > 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
 155EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 46 of #text > DIV > BODY > HTML > #document to 46 of #text > 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
233156EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
234157EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
235 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
236 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 48 of #text > DIV > BODY > HTML > #document to 49 of #text > DIV > BODY > HTML > #document toDOMRange:range from 49 of #text > DIV > BODY > HTML > #document to 49 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 158EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 48 of #text > DIV > BODY > HTML > #document to 48 of #text > DIV > BODY > HTML > #document toDOMRange:range from 49 of #text > DIV > BODY > HTML > #document to 49 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
237159EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
238160EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
239 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
240 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 49 of #text > DIV > BODY > HTML > #document to 50 of #text > DIV > BODY > HTML > #document toDOMRange:range from 50 of #text > DIV > BODY > HTML > #document to 50 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 161EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 49 of #text > DIV > BODY > HTML > #document to 49 of #text > DIV > BODY > HTML > #document toDOMRange:range from 50 of #text > DIV > BODY > HTML > #document to 50 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
241162EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
242163EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
243 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
244 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
245 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
246 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 50 of #text > DIV > BODY > HTML > #document to 51 of #text > DIV > BODY > HTML > #document toDOMRange:range from 51 of #text > DIV > BODY > HTML > #document to 51 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 164EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 50 of #text > DIV > BODY > HTML > #document to 50 of #text > DIV > BODY > HTML > #document toDOMRange:range from 51 of #text > DIV > BODY > HTML > #document to 51 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
247165EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
248166EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
249167EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
250 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
251 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
252 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 51 of #text > DIV > BODY > HTML > #document to 52 of #text > DIV > BODY > HTML > #document toDOMRange:range from 52 of #text > DIV > BODY > HTML > #document to 52 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 168EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 50 of #text > DIV > BODY > HTML > #document to 50 of #text > DIV > BODY > HTML > #document toDOMRange:range from 52 of #text > DIV > BODY > HTML > #document to 52 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
253169EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
254170EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
255 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
256 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 52 of #text > DIV > BODY > HTML > #document to 53 of #text > DIV > BODY > HTML > #document toDOMRange:range from 53 of #text > DIV > BODY > HTML > #document to 53 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 171EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 52 of #text > DIV > BODY > HTML > #document to 52 of #text > DIV > BODY > HTML > #document toDOMRange:range from 53 of #text > DIV > BODY > HTML > #document to 53 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
257172EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
258173EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
259 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
260 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 53 of #text > DIV > BODY > HTML > #document to 54 of #text > DIV > BODY > HTML > #document toDOMRange:range from 54 of #text > DIV > BODY > HTML > #document to 54 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 174EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 53 of #text > DIV > BODY > HTML > #document to 53 of #text > DIV > BODY > HTML > #document toDOMRange:range from 54 of #text > DIV > BODY > HTML > #document to 54 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
261175EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
262176EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
263 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
264 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
265 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
266 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 54 of #text > DIV > BODY > HTML > #document to 55 of #text > DIV > BODY > HTML > #document toDOMRange:range from 55 of #text > DIV > BODY > HTML > #document to 55 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 177EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 54 of #text > DIV > BODY > HTML > #document to 54 of #text > DIV > BODY > HTML > #document toDOMRange:range from 55 of #text > DIV > BODY > HTML > #document to 55 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
267178EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
268179EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
269180EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
270 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
271 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
272 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 55 of #text > DIV > BODY > HTML > #document to 56 of #text > DIV > BODY > HTML > #document toDOMRange:range from 56 of #text > DIV > BODY > HTML > #document to 56 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 181EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 54 of #text > DIV > BODY > HTML > #document to 54 of #text > DIV > BODY > HTML > #document toDOMRange:range from 56 of #text > DIV > BODY > HTML > #document to 56 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
273182EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
274183EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
275 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
276 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 56 of #text > DIV > BODY > HTML > #document to 57 of #text > DIV > BODY > HTML > #document toDOMRange:range from 57 of #text > DIV > BODY > HTML > #document to 57 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 184EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 56 of #text > DIV > BODY > HTML > #document to 56 of #text > DIV > BODY > HTML > #document toDOMRange:range from 57 of #text > DIV > BODY > HTML > #document to 57 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
277185EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
278186EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
279 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
280 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
281 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
282 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 57 of #text > DIV > BODY > HTML > #document to 58 of #text > DIV > BODY > HTML > #document toDOMRange:range from 58 of #text > DIV > BODY > HTML > #document to 58 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 187EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 57 of #text > DIV > BODY > HTML > #document to 57 of #text > DIV > BODY > HTML > #document toDOMRange:range from 58 of #text > DIV > BODY > HTML > #document to 58 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
283188EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
284189EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
285190EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
286 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
287 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
288 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 58 of #text > DIV > BODY > HTML > #document to 59 of #text > DIV > BODY > HTML > #document toDOMRange:range from 59 of #text > DIV > BODY > HTML > #document to 59 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 191EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 57 of #text > DIV > BODY > HTML > #document to 57 of #text > DIV > BODY > HTML > #document toDOMRange:range from 59 of #text > DIV > BODY > HTML > #document to 59 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
289192EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
290193EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
291 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
292 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
293 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
294 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 59 of #text > DIV > BODY > HTML > #document to 60 of #text > DIV > BODY > HTML > #document toDOMRange:range from 60 of #text > DIV > BODY > HTML > #document to 60 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 194EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 59 of #text > DIV > BODY > HTML > #document to 59 of #text > DIV > BODY > HTML > #document toDOMRange:range from 60 of #text > DIV > BODY > HTML > #document to 60 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
295195EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
296196EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
297197EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
298 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
299 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
300 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 60 of #text > DIV > BODY > HTML > #document to 61 of #text > DIV > BODY > HTML > #document toDOMRange:range from 61 of #text > DIV > BODY > HTML > #document to 61 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 198EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 59 of #text > DIV > BODY > HTML > #document to 59 of #text > DIV > BODY > HTML > #document toDOMRange:range from 61 of #text > DIV > BODY > HTML > #document to 61 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
301199EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
302200EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
303 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
304 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 61 of #text > DIV > BODY > HTML > #document to 62 of #text > DIV > BODY > HTML > #document toDOMRange:range from 62 of #text > DIV > BODY > HTML > #document to 62 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 201EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 61 of #text > DIV > BODY > HTML > #document to 61 of #text > DIV > BODY > HTML > #document toDOMRange:range from 62 of #text > DIV > BODY > HTML > #document to 62 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
305202EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
306203EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
307 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
308 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 62 of #text > DIV > BODY > HTML > #document to 63 of #text > DIV > BODY > HTML > #document toDOMRange:range from 63 of #text > DIV > BODY > HTML > #document to 63 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 204EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 62 of #text > DIV > BODY > HTML > #document to 62 of #text > DIV > BODY > HTML > #document toDOMRange:range from 63 of #text > DIV > BODY > HTML > #document to 63 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
309205EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
310206EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
311 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
312 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 63 of #text > DIV > BODY > HTML > #document to 64 of #text > DIV > BODY > HTML > #document toDOMRange:range from 64 of #text > DIV > BODY > HTML > #document to 64 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 207EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 63 of #text > DIV > BODY > HTML > #document to 63 of #text > DIV > BODY > HTML > #document toDOMRange:range from 64 of #text > DIV > BODY > HTML > #document to 64 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
313208EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
314209EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
315 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
316 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 64 of #text > DIV > BODY > HTML > #document to 65 of #text > DIV > BODY > HTML > #document toDOMRange:range from 65 of #text > DIV > BODY > HTML > #document to 65 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 210EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 64 of #text > DIV > BODY > HTML > #document to 64 of #text > DIV > BODY > HTML > #document toDOMRange:range from 65 of #text > DIV > BODY > HTML > #document to 65 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
317211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
318212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
319 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
320 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
321 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
322 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 65 of #text > DIV > BODY > HTML > #document to 66 of #text > DIV > BODY > HTML > #document toDOMRange:range from 66 of #text > DIV > BODY > HTML > #document to 66 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 213EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 65 of #text > DIV > BODY > HTML > #document to 65 of #text > DIV > BODY > HTML > #document toDOMRange:range from 66 of #text > DIV > BODY > HTML > #document to 66 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
323214EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
324215EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
325216EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
326 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
327 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
328 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 66 of #text > DIV > BODY > HTML > #document to 67 of #text > DIV > BODY > HTML > #document toDOMRange:range from 67 of #text > DIV > BODY > HTML > #document to 67 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 217EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 65 of #text > DIV > BODY > HTML > #document to 65 of #text > DIV > BODY > HTML > #document toDOMRange:range from 67 of #text > DIV > BODY > HTML > #document to 67 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
329218EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
330219EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
331 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
332 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 67 of #text > DIV > BODY > HTML > #document to 68 of #text > DIV > BODY > HTML > #document toDOMRange:range from 68 of #text > DIV > BODY > HTML > #document to 68 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 220EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 67 of #text > DIV > BODY > HTML > #document to 67 of #text > DIV > BODY > HTML > #document toDOMRange:range from 68 of #text > DIV > BODY > HTML > #document to 68 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
333221EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
334222EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
335 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
336 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 68 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document toDOMRange:range from 69 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 223EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 68 of #text > DIV > BODY > HTML > #document to 68 of #text > DIV > BODY > HTML > #document toDOMRange:range from 69 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
337224EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
338225EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
339 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
340 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 69 of #text > DIV > BODY > HTML > #document to 70 of #text > DIV > BODY > HTML > #document toDOMRange:range from 70 of #text > DIV > BODY > HTML > #document to 70 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 226EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 69 of #text > DIV > BODY > HTML > #document to 69 of #text > DIV > BODY > HTML > #document toDOMRange:range from 70 of #text > DIV > BODY > HTML > #document to 70 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
341227EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
342228EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
343 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
344 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 70 of #text > DIV > BODY > HTML > #document to 71 of #text > DIV > BODY > HTML > #document toDOMRange:range from 71 of #text > DIV > BODY > HTML > #document to 71 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 229EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 70 of #text > DIV > BODY > HTML > #document to 70 of #text > DIV > BODY > HTML > #document toDOMRange:range from 71 of #text > DIV > BODY > HTML > #document to 71 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
345230EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
346231EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
347 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
348 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 71 of #text > DIV > BODY > HTML > #document to 72 of #text > DIV > BODY > HTML > #document toDOMRange:range from 72 of #text > DIV > BODY > HTML > #document to 72 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 232EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 71 of #text > DIV > BODY > HTML > #document to 71 of #text > DIV > BODY > HTML > #document toDOMRange:range from 72 of #text > DIV > BODY > HTML > #document to 72 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
349233EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
350234EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
351 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
352 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 72 of #text > DIV > BODY > HTML > #document to 73 of #text > DIV > BODY > HTML > #document toDOMRange:range from 73 of #text > DIV > BODY > HTML > #document to 73 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 235EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 72 of #text > DIV > BODY > HTML > #document to 72 of #text > DIV > BODY > HTML > #document toDOMRange:range from 73 of #text > DIV > BODY > HTML > #document to 73 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
353236EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
354237EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
355 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
356 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 73 of #text > DIV > BODY > HTML > #document to 74 of #text > DIV > BODY > HTML > #document toDOMRange:range from 74 of #text > DIV > BODY > HTML > #document to 74 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 238EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 73 of #text > DIV > BODY > HTML > #document to 73 of #text > DIV > BODY > HTML > #document toDOMRange:range from 74 of #text > DIV > BODY > HTML > #document to 74 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
357239EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
358240EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
359 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
360 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 74 of #text > DIV > BODY > HTML > #document to 75 of #text > DIV > BODY > HTML > #document toDOMRange:range from 75 of #text > DIV > BODY > HTML > #document to 75 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 241EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 74 of #text > DIV > BODY > HTML > #document to 74 of #text > DIV > BODY > HTML > #document toDOMRange:range from 75 of #text > DIV > BODY > HTML > #document to 75 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
361242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
362243EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
363 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
364 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 75 of #text > DIV > BODY > HTML > #document to 76 of #text > DIV > BODY > HTML > #document toDOMRange:range from 76 of #text > DIV > BODY > HTML > #document to 76 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 244EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 75 of #text > DIV > BODY > HTML > #document to 75 of #text > DIV > BODY > HTML > #document toDOMRange:range from 76 of #text > DIV > BODY > HTML > #document to 76 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
365245EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
366246EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
367 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
368 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 76 of #text > DIV > BODY > HTML > #document to 77 of #text > DIV > BODY > HTML > #document toDOMRange:range from 77 of #text > DIV > BODY > HTML > #document to 77 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 247EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 76 of #text > DIV > BODY > HTML > #document to 76 of #text > DIV > BODY > HTML > #document toDOMRange:range from 77 of #text > DIV > BODY > HTML > #document to 77 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
369248EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
370249EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
371 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
372 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 77 of #text > DIV > BODY > HTML > #document to 78 of #text > DIV > BODY > HTML > #document toDOMRange:range from 78 of #text > DIV > BODY > HTML > #document to 78 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 250EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 77 of #text > DIV > BODY > HTML > #document to 77 of #text > DIV > BODY > HTML > #document toDOMRange:range from 78 of #text > DIV > BODY > HTML > #document to 78 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
373251EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
374252EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
375 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
376 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
377 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
378 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 78 of #text > DIV > BODY > HTML > #document to 79 of #text > DIV > BODY > HTML > #document toDOMRange:range from 79 of #text > DIV > BODY > HTML > #document to 79 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 253EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 78 of #text > DIV > BODY > HTML > #document to 78 of #text > DIV > BODY > HTML > #document toDOMRange:range from 79 of #text > DIV > BODY > HTML > #document to 79 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
379254EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
380255EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
381256EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
382 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
383 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
384 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 79 of #text > DIV > BODY > HTML > #document to 80 of #text > DIV > BODY > HTML > #document toDOMRange:range from 80 of #text > DIV > BODY > HTML > #document to 80 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 257EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 78 of #text > DIV > BODY > HTML > #document to 78 of #text > DIV > BODY > HTML > #document toDOMRange:range from 80 of #text > DIV > BODY > HTML > #document to 80 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
385258EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
386259EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
387 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
388 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 80 of #text > DIV > BODY > HTML > #document to 81 of #text > DIV > BODY > HTML > #document toDOMRange:range from 81 of #text > DIV > BODY > HTML > #document to 81 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 260EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 80 of #text > DIV > BODY > HTML > #document to 80 of #text > DIV > BODY > HTML > #document toDOMRange:range from 81 of #text > DIV > BODY > HTML > #document to 81 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
389261EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
390262EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
391 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
392 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 81 of #text > DIV > BODY > HTML > #document to 82 of #text > DIV > BODY > HTML > #document toDOMRange:range from 82 of #text > DIV > BODY > HTML > #document to 82 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 263EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 81 of #text > DIV > BODY > HTML > #document to 81 of #text > DIV > BODY > HTML > #document toDOMRange:range from 82 of #text > DIV > BODY > HTML > #document to 82 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
393264EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
394265EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
395 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
396 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 82 of #text > DIV > BODY > HTML > #document to 83 of #text > DIV > BODY > HTML > #document toDOMRange:range from 83 of #text > DIV > BODY > HTML > #document to 83 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 266EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 82 of #text > DIV > BODY > HTML > #document to 82 of #text > DIV > BODY > HTML > #document toDOMRange:range from 83 of #text > DIV > BODY > HTML > #document to 83 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
397267EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
398268EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
399 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
400 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 83 of #text > DIV > BODY > HTML > #document to 84 of #text > DIV > BODY > HTML > #document toDOMRange:range from 84 of #text > DIV > BODY > HTML > #document to 84 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 269EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 83 of #text > DIV > BODY > HTML > #document to 83 of #text > DIV > BODY > HTML > #document toDOMRange:range from 84 of #text > DIV > BODY > HTML > #document to 84 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
401270EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
402271EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
403 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
404 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 84 of #text > DIV > BODY > HTML > #document to 85 of #text > DIV > BODY > HTML > #document toDOMRange:range from 85 of #text > DIV > BODY > HTML > #document to 85 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 272EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 84 of #text > DIV > BODY > HTML > #document to 84 of #text > DIV > BODY > HTML > #document toDOMRange:range from 85 of #text > DIV > BODY > HTML > #document to 85 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
405273EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
406274EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
407 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
408 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 85 of #text > DIV > BODY > HTML > #document to 86 of #text > DIV > BODY > HTML > #document toDOMRange:range from 86 of #text > DIV > BODY > HTML > #document to 86 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 275EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 85 of #text > DIV > BODY > HTML > #document to 85 of #text > DIV > BODY > HTML > #document toDOMRange:range from 86 of #text > DIV > BODY > HTML > #document to 86 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
409276EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
410277EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
411 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
412 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 86 of #text > DIV > BODY > HTML > #document to 87 of #text > DIV > BODY > HTML > #document toDOMRange:range from 87 of #text > DIV > BODY > HTML > #document to 87 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 278EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 86 of #text > DIV > BODY > HTML > #document to 86 of #text > DIV > BODY > HTML > #document toDOMRange:range from 87 of #text > DIV > BODY > HTML > #document to 87 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
413279EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
414280EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
415 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
416 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
417 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
418 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 87 of #text > DIV > BODY > HTML > #document to 88 of #text > DIV > BODY > HTML > #document toDOMRange:range from 88 of #text > DIV > BODY > HTML > #document to 88 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 281EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 87 of #text > DIV > BODY > HTML > #document to 87 of #text > DIV > BODY > HTML > #document toDOMRange:range from 88 of #text > DIV > BODY > HTML > #document to 88 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
419282EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
420283EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
421284EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
422 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
423 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
424 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 88 of #text > DIV > BODY > HTML > #document to 89 of #text > DIV > BODY > HTML > #document toDOMRange:range from 89 of #text > DIV > BODY > HTML > #document to 89 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 285EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 87 of #text > DIV > BODY > HTML > #document to 87 of #text > DIV > BODY > HTML > #document toDOMRange:range from 89 of #text > DIV > BODY > HTML > #document to 89 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
425286EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
426287EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
427 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
428 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 89 of #text > DIV > BODY > HTML > #document to 90 of #text > DIV > BODY > HTML > #document toDOMRange:range from 90 of #text > DIV > BODY > HTML > #document to 90 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 288EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 89 of #text > DIV > BODY > HTML > #document to 89 of #text > DIV > BODY > HTML > #document toDOMRange:range from 90 of #text > DIV > BODY > HTML > #document to 90 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
429289EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
430290EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
431 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
432 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 90 of #text > DIV > BODY > HTML > #document to 91 of #text > DIV > BODY > HTML > #document toDOMRange:range from 91 of #text > DIV > BODY > HTML > #document to 91 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 291EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 90 of #text > DIV > BODY > HTML > #document to 90 of #text > DIV > BODY > HTML > #document toDOMRange:range from 91 of #text > DIV > BODY > HTML > #document to 91 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
433292EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
434293EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
435 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
436 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
437 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
438 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 91 of #text > DIV > BODY > HTML > #document to 92 of #text > DIV > BODY > HTML > #document toDOMRange:range from 92 of #text > DIV > BODY > HTML > #document to 92 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 294EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 91 of #text > DIV > BODY > HTML > #document to 91 of #text > DIV > BODY > HTML > #document toDOMRange:range from 92 of #text > DIV > BODY > HTML > #document to 92 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
439295EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
440296EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
441297EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
442 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
443 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
444 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 92 of #text > DIV > BODY > HTML > #document to 93 of #text > DIV > BODY > HTML > #document toDOMRange:range from 93 of #text > DIV > BODY > HTML > #document to 93 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 298EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 91 of #text > DIV > BODY > HTML > #document to 91 of #text > DIV > BODY > HTML > #document toDOMRange:range from 93 of #text > DIV > BODY > HTML > #document to 93 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
445299EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
446300EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
447 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
448 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 93 of #text > DIV > BODY > HTML > #document to 94 of #text > DIV > BODY > HTML > #document toDOMRange:range from 94 of #text > DIV > BODY > HTML > #document to 94 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 301EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 93 of #text > DIV > BODY > HTML > #document to 93 of #text > DIV > BODY > HTML > #document toDOMRange:range from 94 of #text > DIV > BODY > HTML > #document to 94 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
449302EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
450303EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
451 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
452 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 94 of #text > DIV > BODY > HTML > #document to 95 of #text > DIV > BODY > HTML > #document toDOMRange:range from 95 of #text > DIV > BODY > HTML > #document to 95 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 304EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 94 of #text > DIV > BODY > HTML > #document to 94 of #text > DIV > BODY > HTML > #document toDOMRange:range from 95 of #text > DIV > BODY > HTML > #document to 95 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
453305EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
454306EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
455 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
456 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 95 of #text > DIV > BODY > HTML > #document to 96 of #text > DIV > BODY > HTML > #document toDOMRange:range from 96 of #text > DIV > BODY > HTML > #document to 96 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 307EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 95 of #text > DIV > BODY > HTML > #document to 95 of #text > DIV > BODY > HTML > #document toDOMRange:range from 96 of #text > DIV > BODY > HTML > #document to 96 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
457308EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
458309EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
459 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
460 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
461 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
462 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 96 of #text > DIV > BODY > HTML > #document to 97 of #text > DIV > BODY > HTML > #document toDOMRange:range from 97 of #text > DIV > BODY > HTML > #document to 97 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 310EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 96 of #text > DIV > BODY > HTML > #document to 96 of #text > DIV > BODY > HTML > #document toDOMRange:range from 97 of #text > DIV > BODY > HTML > #document to 97 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
463311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
464312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
465313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
466 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
467 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
468 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 97 of #text > DIV > BODY > HTML > #document to 98 of #text > DIV > BODY > HTML > #document toDOMRange:range from 98 of #text > DIV > BODY > HTML > #document to 98 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 314EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 96 of #text > DIV > BODY > HTML > #document to 96 of #text > DIV > BODY > HTML > #document toDOMRange:range from 98 of #text > DIV > BODY > HTML > #document to 98 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
469315EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
470316EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
471 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
472 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 98 of #text > DIV > BODY > HTML > #document to 99 of #text > DIV > BODY > HTML > #document toDOMRange:range from 99 of #text > DIV > BODY > HTML > #document to 99 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 317EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 98 of #text > DIV > BODY > HTML > #document to 98 of #text > DIV > BODY > HTML > #document toDOMRange:range from 99 of #text > DIV > BODY > HTML > #document to 99 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
473318EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
474319EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
475 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
476 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 99 of #text > DIV > BODY > HTML > #document to 100 of #text > DIV > BODY > HTML > #document toDOMRange:range from 100 of #text > DIV > BODY > HTML > #document to 100 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 320EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 99 of #text > DIV > BODY > HTML > #document to 99 of #text > DIV > BODY > HTML > #document toDOMRange:range from 100 of #text > DIV > BODY > HTML > #document to 100 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
477321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
478322EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
479 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
480 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 100 of #text > DIV > BODY > HTML > #document to 101 of #text > DIV > BODY > HTML > #document toDOMRange:range from 101 of #text > DIV > BODY > HTML > #document to 101 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 323EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 100 of #text > DIV > BODY > HTML > #document to 100 of #text > DIV > BODY > HTML > #document toDOMRange:range from 101 of #text > DIV > BODY > HTML > #document to 101 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
481324EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
482325EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
483 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
484 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 101 of #text > DIV > BODY > HTML > #document to 102 of #text > DIV > BODY > HTML > #document toDOMRange:range from 102 of #text > DIV > BODY > HTML > #document to 102 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 326EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 101 of #text > DIV > BODY > HTML > #document to 101 of #text > DIV > BODY > HTML > #document toDOMRange:range from 102 of #text > DIV > BODY > HTML > #document to 102 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
485327EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
486328EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
487 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
488 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
489 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
490 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 102 of #text > DIV > BODY > HTML > #document to 103 of #text > DIV > BODY > HTML > #document toDOMRange:range from 103 of #text > DIV > BODY > HTML > #document to 103 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 329EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 102 of #text > DIV > BODY > HTML > #document to 102 of #text > DIV > BODY > HTML > #document toDOMRange:range from 103 of #text > DIV > BODY > HTML > #document to 103 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
491330EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
492331EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
493332EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
494 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
495 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
496 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 103 of #text > DIV > BODY > HTML > #document to 104 of #text > DIV > BODY > HTML > #document toDOMRange:range from 104 of #text > DIV > BODY > HTML > #document to 104 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 333EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 102 of #text > DIV > BODY > HTML > #document to 102 of #text > DIV > BODY > HTML > #document toDOMRange:range from 104 of #text > DIV > BODY > HTML > #document to 104 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
497334EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
498335EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
499 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
500 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 104 of #text > DIV > BODY > HTML > #document to 105 of #text > DIV > BODY > HTML > #document toDOMRange:range from 105 of #text > DIV > BODY > HTML > #document to 105 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 336EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 104 of #text > DIV > BODY > HTML > #document to 104 of #text > DIV > BODY > HTML > #document toDOMRange:range from 105 of #text > DIV > BODY > HTML > #document to 105 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
501337EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
502338EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
503 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
504 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
505 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
506 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 105 of #text > DIV > BODY > HTML > #document to 106 of #text > DIV > BODY > HTML > #document toDOMRange:range from 106 of #text > DIV > BODY > HTML > #document to 106 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 339EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 105 of #text > DIV > BODY > HTML > #document to 105 of #text > DIV > BODY > HTML > #document toDOMRange:range from 106 of #text > DIV > BODY > HTML > #document to 106 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
507340EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
508341EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
509342EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
510 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
511 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
512 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 106 of #text > DIV > BODY > HTML > #document to 107 of #text > DIV > BODY > HTML > #document toDOMRange:range from 107 of #text > DIV > BODY > HTML > #document to 107 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 343EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 105 of #text > DIV > BODY > HTML > #document to 105 of #text > DIV > BODY > HTML > #document toDOMRange:range from 107 of #text > DIV > BODY > HTML > #document to 107 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
513344EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
514345EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
515 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
516 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 107 of #text > DIV > BODY > HTML > #document to 108 of #text > DIV > BODY > HTML > #document toDOMRange:range from 108 of #text > DIV > BODY > HTML > #document to 108 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 346EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 107 of #text > DIV > BODY > HTML > #document to 107 of #text > DIV > BODY > HTML > #document toDOMRange:range from 108 of #text > DIV > BODY > HTML > #document to 108 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
517347EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
518348EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
519 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
520 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 108 of #text > DIV > BODY > HTML > #document to 109 of #text > DIV > BODY > HTML > #document toDOMRange:range from 109 of #text > DIV > BODY > HTML > #document to 109 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 349EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 108 of #text > DIV > BODY > HTML > #document to 108 of #text > DIV > BODY > HTML > #document toDOMRange:range from 109 of #text > DIV > BODY > HTML > #document to 109 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
521350EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
522351EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
523 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
524 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
525 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
526 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 109 of #text > DIV > BODY > HTML > #document to 110 of #text > DIV > BODY > HTML > #document toDOMRange:range from 110 of #text > DIV > BODY > HTML > #document to 110 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 352EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 109 of #text > DIV > BODY > HTML > #document to 109 of #text > DIV > BODY > HTML > #document toDOMRange:range from 110 of #text > DIV > BODY > HTML > #document to 110 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
527353EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
528354EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
529355EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
530 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
531 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
532 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 110 of #text > DIV > BODY > HTML > #document to 111 of #text > DIV > BODY > HTML > #document toDOMRange:range from 111 of #text > DIV > BODY > HTML > #document to 111 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 356EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 109 of #text > DIV > BODY > HTML > #document to 109 of #text > DIV > BODY > HTML > #document toDOMRange:range from 111 of #text > DIV > BODY > HTML > #document to 111 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
533357EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
534358EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
535 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
536 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 111 of #text > DIV > BODY > HTML > #document to 112 of #text > DIV > BODY > HTML > #document toDOMRange:range from 112 of #text > DIV > BODY > HTML > #document to 112 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 359EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 111 of #text > DIV > BODY > HTML > #document to 111 of #text > DIV > BODY > HTML > #document toDOMRange:range from 112 of #text > DIV > BODY > HTML > #document to 112 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
537360EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
538361EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
539 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
540 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 112 of #text > DIV > BODY > HTML > #document to 113 of #text > DIV > BODY > HTML > #document toDOMRange:range from 113 of #text > DIV > BODY > HTML > #document to 113 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 362EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 112 of #text > DIV > BODY > HTML > #document to 112 of #text > DIV > BODY > HTML > #document toDOMRange:range from 113 of #text > DIV > BODY > HTML > #document to 113 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
541363EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
542364EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
543 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
544 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 113 of #text > DIV > BODY > HTML > #document to 114 of #text > DIV > BODY > HTML > #document toDOMRange:range from 114 of #text > DIV > BODY > HTML > #document to 114 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 365EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 113 of #text > DIV > BODY > HTML > #document to 113 of #text > DIV > BODY > HTML > #document toDOMRange:range from 114 of #text > DIV > BODY > HTML > #document to 114 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
545366EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
546367EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
547 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
548 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
549 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
550 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 114 of #text > DIV > BODY > HTML > #document to 115 of #text > DIV > BODY > HTML > #document toDOMRange:range from 115 of #text > DIV > BODY > HTML > #document to 115 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 368EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 114 of #text > DIV > BODY > HTML > #document to 114 of #text > DIV > BODY > HTML > #document toDOMRange:range from 115 of #text > DIV > BODY > HTML > #document to 115 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
551369EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
552370EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
553371EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
554 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
555 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
556 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 115 of #text > DIV > BODY > HTML > #document to 116 of #text > DIV > BODY > HTML > #document toDOMRange:range from 116 of #text > DIV > BODY > HTML > #document to 116 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 372EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 114 of #text > DIV > BODY > HTML > #document to 114 of #text > DIV > BODY > HTML > #document toDOMRange:range from 116 of #text > DIV > BODY > HTML > #document to 116 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
557373EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
558374EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
559 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
560 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 116 of #text > DIV > BODY > HTML > #document to 117 of #text > DIV > BODY > HTML > #document toDOMRange:range from 117 of #text > DIV > BODY > HTML > #document to 117 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 375EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 116 of #text > DIV > BODY > HTML > #document to 116 of #text > DIV > BODY > HTML > #document toDOMRange:range from 117 of #text > DIV > BODY > HTML > #document to 117 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
561376EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
562377EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
563 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
564 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 117 of #text > DIV > BODY > HTML > #document to 118 of #text > DIV > BODY > HTML > #document toDOMRange:range from 118 of #text > DIV > BODY > HTML > #document to 118 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 378EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 117 of #text > DIV > BODY > HTML > #document to 117 of #text > DIV > BODY > HTML > #document toDOMRange:range from 118 of #text > DIV > BODY > HTML > #document to 118 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
565379EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
566380EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
567 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
568 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 118 of #text > DIV > BODY > HTML > #document to 119 of #text > DIV > BODY > HTML > #document toDOMRange:range from 119 of #text > DIV > BODY > HTML > #document to 119 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 381EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 118 of #text > DIV > BODY > HTML > #document to 118 of #text > DIV > BODY > HTML > #document toDOMRange:range from 119 of #text > DIV > BODY > HTML > #document to 119 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
569382EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
570383EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
571 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
572 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
573 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
574 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 119 of #text > DIV > BODY > HTML > #document to 120 of #text > DIV > BODY > HTML > #document toDOMRange:range from 120 of #text > DIV > BODY > HTML > #document to 120 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 384EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 119 of #text > DIV > BODY > HTML > #document to 119 of #text > DIV > BODY > HTML > #document toDOMRange:range from 120 of #text > DIV > BODY > HTML > #document to 120 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
575385EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
576386EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
577387EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
578 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
579 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
580 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 120 of #text > DIV > BODY > HTML > #document to 121 of #text > DIV > BODY > HTML > #document toDOMRange:range from 121 of #text > DIV > BODY > HTML > #document to 121 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 388EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 119 of #text > DIV > BODY > HTML > #document to 119 of #text > DIV > BODY > HTML > #document toDOMRange:range from 121 of #text > DIV > BODY > HTML > #document to 121 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
581389EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
582390EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
583 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
584 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 121 of #text > DIV > BODY > HTML > #document to 122 of #text > DIV > BODY > HTML > #document toDOMRange:range from 122 of #text > DIV > BODY > HTML > #document to 122 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 391EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 121 of #text > DIV > BODY > HTML > #document to 121 of #text > DIV > BODY > HTML > #document toDOMRange:range from 122 of #text > DIV > BODY > HTML > #document to 122 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
585392EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
586393EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
587 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
588 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 122 of #text > DIV > BODY > HTML > #document to 123 of #text > DIV > BODY > HTML > #document toDOMRange:range from 123 of #text > DIV > BODY > HTML > #document to 123 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 394EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 122 of #text > DIV > BODY > HTML > #document to 122 of #text > DIV > BODY > HTML > #document toDOMRange:range from 123 of #text > DIV > BODY > HTML > #document to 123 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
589395EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
590396EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
591 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
592 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 123 of #text > DIV > BODY > HTML > #document to 124 of #text > DIV > BODY > HTML > #document toDOMRange:range from 124 of #text > DIV > BODY > HTML > #document to 124 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 397EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 123 of #text > DIV > BODY > HTML > #document to 123 of #text > DIV > BODY > HTML > #document toDOMRange:range from 124 of #text > DIV > BODY > HTML > #document to 124 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
593398EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
594399EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
595 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
596 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 124 of #text > DIV > BODY > HTML > #document to 125 of #text > DIV > BODY > HTML > #document toDOMRange:range from 125 of #text > DIV > BODY > HTML > #document to 125 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 400EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 124 of #text > DIV > BODY > HTML > #document to 124 of #text > DIV > BODY > HTML > #document toDOMRange:range from 125 of #text > DIV > BODY > HTML > #document to 125 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
597401EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
598402EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
599 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
600 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
601 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
602 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 125 of #text > DIV > BODY > HTML > #document to 126 of #text > DIV > BODY > HTML > #document toDOMRange:range from 126 of #text > DIV > BODY > HTML > #document to 126 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 403EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 125 of #text > DIV > BODY > HTML > #document to 125 of #text > DIV > BODY > HTML > #document toDOMRange:range from 126 of #text > DIV > BODY > HTML > #document to 126 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
603404EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
604405EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
605406EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
606 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
607 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
608 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 126 of #text > DIV > BODY > HTML > #document to 127 of #text > DIV > BODY > HTML > #document toDOMRange:range from 127 of #text > DIV > BODY > HTML > #document to 127 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 407EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 125 of #text > DIV > BODY > HTML > #document to 125 of #text > DIV > BODY > HTML > #document toDOMRange:range from 127 of #text > DIV > BODY > HTML > #document to 127 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
609408EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
610409EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
611 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
612 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 127 of #text > DIV > BODY > HTML > #document to 128 of #text > DIV > BODY > HTML > #document toDOMRange:range from 128 of #text > DIV > BODY > HTML > #document to 128 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 410EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 127 of #text > DIV > BODY > HTML > #document to 127 of #text > DIV > BODY > HTML > #document toDOMRange:range from 128 of #text > DIV > BODY > HTML > #document to 128 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
613411EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
614412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
615 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
616 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 128 of #text > DIV > BODY > HTML > #document to 129 of #text > DIV > BODY > HTML > #document toDOMRange:range from 129 of #text > DIV > BODY > HTML > #document to 129 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 413EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 128 of #text > DIV > BODY > HTML > #document to 128 of #text > DIV > BODY > HTML > #document toDOMRange:range from 129 of #text > DIV > BODY > HTML > #document to 129 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
617414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
618415EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
619 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
620 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 129 of #text > DIV > BODY > HTML > #document to 130 of #text > DIV > BODY > HTML > #document toDOMRange:range from 130 of #text > DIV > BODY > HTML > #document to 130 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 416EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 129 of #text > DIV > BODY > HTML > #document to 129 of #text > DIV > BODY > HTML > #document toDOMRange:range from 130 of #text > DIV > BODY > HTML > #document to 130 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
621417EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
622418EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
623 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
624 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 130 of #text > DIV > BODY > HTML > #document to 131 of #text > DIV > BODY > HTML > #document toDOMRange:range from 131 of #text > DIV > BODY > HTML > #document to 131 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 419EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 130 of #text > DIV > BODY > HTML > #document to 130 of #text > DIV > BODY > HTML > #document toDOMRange:range from 131 of #text > DIV > BODY > HTML > #document to 131 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
625420EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
626421EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
627 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
628 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 131 of #text > DIV > BODY > HTML > #document to 132 of #text > DIV > BODY > HTML > #document toDOMRange:range from 132 of #text > DIV > BODY > HTML > #document to 132 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 422EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 131 of #text > DIV > BODY > HTML > #document to 131 of #text > DIV > BODY > HTML > #document toDOMRange:range from 132 of #text > DIV > BODY > HTML > #document to 132 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
629423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
630424EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
631 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
632 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
633 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
634 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 132 of #text > DIV > BODY > HTML > #document to 133 of #text > DIV > BODY > HTML > #document toDOMRange:range from 133 of #text > DIV > BODY > HTML > #document to 133 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 425EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 132 of #text > DIV > BODY > HTML > #document to 132 of #text > DIV > BODY > HTML > #document toDOMRange:range from 133 of #text > DIV > BODY > HTML > #document to 133 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
635426EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
636427EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
637428EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
638 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
639 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
640 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 133 of #text > DIV > BODY > HTML > #document to 134 of #text > DIV > BODY > HTML > #document toDOMRange:range from 134 of #text > DIV > BODY > HTML > #document to 134 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 429EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 132 of #text > DIV > BODY > HTML > #document to 132 of #text > DIV > BODY > HTML > #document toDOMRange:range from 134 of #text > DIV > BODY > HTML > #document to 134 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
641430EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
642431EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
643 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
644 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 134 of #text > DIV > BODY > HTML > #document to 135 of #text > DIV > BODY > HTML > #document toDOMRange:range from 135 of #text > DIV > BODY > HTML > #document to 135 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 432EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 134 of #text > DIV > BODY > HTML > #document to 134 of #text > DIV > BODY > HTML > #document toDOMRange:range from 135 of #text > DIV > BODY > HTML > #document to 135 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
645433EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
646434EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
647 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
648 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 135 of #text > DIV > BODY > HTML > #document to 136 of #text > DIV > BODY > HTML > #document toDOMRange:range from 136 of #text > DIV > BODY > HTML > #document to 136 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 435EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 135 of #text > DIV > BODY > HTML > #document to 135 of #text > DIV > BODY > HTML > #document toDOMRange:range from 136 of #text > DIV > BODY > HTML > #document to 136 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
649436EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
650437EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
651 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
652 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
653 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
654 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 136 of #text > DIV > BODY > HTML > #document to 137 of #text > DIV > BODY > HTML > #document toDOMRange:range from 137 of #text > DIV > BODY > HTML > #document to 137 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 438EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 136 of #text > DIV > BODY > HTML > #document to 136 of #text > DIV > BODY > HTML > #document toDOMRange:range from 137 of #text > DIV > BODY > HTML > #document to 137 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
655439EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
656440EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
657441EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
658 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
659 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
660 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 137 of #text > DIV > BODY > HTML > #document to 138 of #text > DIV > BODY > HTML > #document toDOMRange:range from 138 of #text > DIV > BODY > HTML > #document to 138 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 442EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 136 of #text > DIV > BODY > HTML > #document to 136 of #text > DIV > BODY > HTML > #document toDOMRange:range from 138 of #text > DIV > BODY > HTML > #document to 138 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
661443EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
662444EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
663 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
664 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 138 of #text > DIV > BODY > HTML > #document to 139 of #text > DIV > BODY > HTML > #document toDOMRange:range from 139 of #text > DIV > BODY > HTML > #document to 139 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 445EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 138 of #text > DIV > BODY > HTML > #document to 138 of #text > DIV > BODY > HTML > #document toDOMRange:range from 139 of #text > DIV > BODY > HTML > #document to 139 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
665446EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
666447EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
667 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
668 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
669 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
670 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 139 of #text > DIV > BODY > HTML > #document to 140 of #text > DIV > BODY > HTML > #document toDOMRange:range from 140 of #text > DIV > BODY > HTML > #document to 140 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 448EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 139 of #text > DIV > BODY > HTML > #document to 139 of #text > DIV > BODY > HTML > #document toDOMRange:range from 140 of #text > DIV > BODY > HTML > #document to 140 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
671449EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
672450EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
673451EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
674 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
675 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
676 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 140 of #text > DIV > BODY > HTML > #document to 141 of #text > DIV > BODY > HTML > #document toDOMRange:range from 141 of #text > DIV > BODY > HTML > #document to 141 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 452EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 139 of #text > DIV > BODY > HTML > #document to 139 of #text > DIV > BODY > HTML > #document toDOMRange:range from 141 of #text > DIV > BODY > HTML > #document to 141 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
677453EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
678454EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
679 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
680 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 141 of #text > DIV > BODY > HTML > #document to 142 of #text > DIV > BODY > HTML > #document toDOMRange:range from 142 of #text > DIV > BODY > HTML > #document to 142 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 455EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 141 of #text > DIV > BODY > HTML > #document to 141 of #text > DIV > BODY > HTML > #document toDOMRange:range from 142 of #text > DIV > BODY > HTML > #document to 142 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
681456EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
682457EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
683 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
684 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 142 of #text > DIV > BODY > HTML > #document to 143 of #text > DIV > BODY > HTML > #document toDOMRange:range from 143 of #text > DIV > BODY > HTML > #document to 143 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 458EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 142 of #text > DIV > BODY > HTML > #document to 142 of #text > DIV > BODY > HTML > #document toDOMRange:range from 143 of #text > DIV > BODY > HTML > #document to 143 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
685459EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
686460EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
687 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
688 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 143 of #text > DIV > BODY > HTML > #document to 144 of #text > DIV > BODY > HTML > #document toDOMRange:range from 144 of #text > DIV > BODY > HTML > #document to 144 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 461EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 143 of #text > DIV > BODY > HTML > #document to 143 of #text > DIV > BODY > HTML > #document toDOMRange:range from 144 of #text > DIV > BODY > HTML > #document to 144 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
689462EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
690463EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
691 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
692 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
693 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
694 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 144 of #text > DIV > BODY > HTML > #document to 145 of #text > DIV > BODY > HTML > #document toDOMRange:range from 145 of #text > DIV > BODY > HTML > #document to 145 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 464EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 144 of #text > DIV > BODY > HTML > #document to 144 of #text > DIV > BODY > HTML > #document toDOMRange:range from 145 of #text > DIV > BODY > HTML > #document to 145 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
695465EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
696466EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
697467EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
698 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
699 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
700 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 145 of #text > DIV > BODY > HTML > #document to 146 of #text > DIV > BODY > HTML > #document toDOMRange:range from 146 of #text > DIV > BODY > HTML > #document to 146 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 468EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 144 of #text > DIV > BODY > HTML > #document to 144 of #text > DIV > BODY > HTML > #document toDOMRange:range from 146 of #text > DIV > BODY > HTML > #document to 146 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
701469EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
702470EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
703 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
704 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 146 of #text > DIV > BODY > HTML > #document to 147 of #text > DIV > BODY > HTML > #document toDOMRange:range from 147 of #text > DIV > BODY > HTML > #document to 147 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 471EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 146 of #text > DIV > BODY > HTML > #document to 146 of #text > DIV > BODY > HTML > #document toDOMRange:range from 147 of #text > DIV > BODY > HTML > #document to 147 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
705472EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
706473EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
707 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
708 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 147 of #text > DIV > BODY > HTML > #document to 148 of #text > DIV > BODY > HTML > #document toDOMRange:range from 148 of #text > DIV > BODY > HTML > #document to 148 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 474EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 147 of #text > DIV > BODY > HTML > #document to 147 of #text > DIV > BODY > HTML > #document toDOMRange:range from 148 of #text > DIV > BODY > HTML > #document to 148 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
709475EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
710476EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
711 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
712 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
713 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
714 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 148 of #text > DIV > BODY > HTML > #document to 149 of #text > DIV > BODY > HTML > #document toDOMRange:range from 149 of #text > DIV > BODY > HTML > #document to 149 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 477EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 148 of #text > DIV > BODY > HTML > #document to 148 of #text > DIV > BODY > HTML > #document toDOMRange:range from 149 of #text > DIV > BODY > HTML > #document to 149 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
715478EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
716479EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
717480EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
718 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
719 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
720 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 149 of #text > DIV > BODY > HTML > #document to 150 of #text > DIV > BODY > HTML > #document toDOMRange:range from 150 of #text > DIV > BODY > HTML > #document to 150 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 481EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 148 of #text > DIV > BODY > HTML > #document to 148 of #text > DIV > BODY > HTML > #document toDOMRange:range from 150 of #text > DIV > BODY > HTML > #document to 150 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
721482EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
722483EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
723 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
724 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 150 of #text > DIV > BODY > HTML > #document to 151 of #text > DIV > BODY > HTML > #document toDOMRange:range from 151 of #text > DIV > BODY > HTML > #document to 151 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 484EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 150 of #text > DIV > BODY > HTML > #document to 150 of #text > DIV > BODY > HTML > #document toDOMRange:range from 151 of #text > DIV > BODY > HTML > #document to 151 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
725485EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
726486EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
727 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
728 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 151 of #text > DIV > BODY > HTML > #document to 152 of #text > DIV > BODY > HTML > #document toDOMRange:range from 152 of #text > DIV > BODY > HTML > #document to 152 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 487EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 151 of #text > DIV > BODY > HTML > #document to 151 of #text > DIV > BODY > HTML > #document toDOMRange:range from 152 of #text > DIV > BODY > HTML > #document to 152 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
729488EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
730489EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
731 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
732 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
733 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
734 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 152 of #text > DIV > BODY > HTML > #document to 153 of #text > DIV > BODY > HTML > #document toDOMRange:range from 153 of #text > DIV > BODY > HTML > #document to 153 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 490EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 152 of #text > DIV > BODY > HTML > #document to 152 of #text > DIV > BODY > HTML > #document toDOMRange:range from 153 of #text > DIV > BODY > HTML > #document to 153 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
735491EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
736492EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
737493EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
738 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
739 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
740 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 153 of #text > DIV > BODY > HTML > #document to 154 of #text > DIV > BODY > HTML > #document toDOMRange:range from 154 of #text > DIV > BODY > HTML > #document to 154 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 494EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 152 of #text > DIV > BODY > HTML > #document to 152 of #text > DIV > BODY > HTML > #document toDOMRange:range from 154 of #text > DIV > BODY > HTML > #document to 154 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
741495EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
742496EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
743 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
744 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 154 of #text > DIV > BODY > HTML > #document to 155 of #text > DIV > BODY > HTML > #document toDOMRange:range from 155 of #text > DIV > BODY > HTML > #document to 155 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 497EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 154 of #text > DIV > BODY > HTML > #document to 154 of #text > DIV > BODY > HTML > #document toDOMRange:range from 155 of #text > DIV > BODY > HTML > #document to 155 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
745498EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
746499EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
747 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
748 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
749 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
750 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 155 of #text > DIV > BODY > HTML > #document to 156 of #text > DIV > BODY > HTML > #document toDOMRange:range from 156 of #text > DIV > BODY > HTML > #document to 156 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 500EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 155 of #text > DIV > BODY > HTML > #document to 155 of #text > DIV > BODY > HTML > #document toDOMRange:range from 156 of #text > DIV > BODY > HTML > #document to 156 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
751501EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
752502EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
753503EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
754 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
755 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
756 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 156 of #text > DIV > BODY > HTML > #document to 157 of #text > DIV > BODY > HTML > #document toDOMRange:range from 157 of #text > DIV > BODY > HTML > #document to 157 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 504EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 155 of #text > DIV > BODY > HTML > #document to 155 of #text > DIV > BODY > HTML > #document toDOMRange:range from 157 of #text > DIV > BODY > HTML > #document to 157 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
757505EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
758506EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
759 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
760 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 157 of #text > DIV > BODY > HTML > #document to 158 of #text > DIV > BODY > HTML > #document toDOMRange:range from 158 of #text > DIV > BODY > HTML > #document to 158 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 507EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 157 of #text > DIV > BODY > HTML > #document to 157 of #text > DIV > BODY > HTML > #document toDOMRange:range from 158 of #text > DIV > BODY > HTML > #document to 158 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
761508EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
762509EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
763 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
764 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 158 of #text > DIV > BODY > HTML > #document to 159 of #text > DIV > BODY > HTML > #document toDOMRange:range from 159 of #text > DIV > BODY > HTML > #document to 159 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 510EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 158 of #text > DIV > BODY > HTML > #document to 158 of #text > DIV > BODY > HTML > #document toDOMRange:range from 159 of #text > DIV > BODY > HTML > #document to 159 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
765511EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
766512EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
767 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
768 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 159 of #text > DIV > BODY > HTML > #document to 160 of #text > DIV > BODY > HTML > #document toDOMRange:range from 160 of #text > DIV > BODY > HTML > #document to 160 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 513EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 159 of #text > DIV > BODY > HTML > #document to 159 of #text > DIV > BODY > HTML > #document toDOMRange:range from 160 of #text > DIV > BODY > HTML > #document to 160 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
769514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
770515EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
771 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
772 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 160 of #text > DIV > BODY > HTML > #document to 161 of #text > DIV > BODY > HTML > #document toDOMRange:range from 161 of #text > DIV > BODY > HTML > #document to 161 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 516EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 160 of #text > DIV > BODY > HTML > #document to 160 of #text > DIV > BODY > HTML > #document toDOMRange:range from 161 of #text > DIV > BODY > HTML > #document to 161 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
773517EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
774518EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
775 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
776 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 161 of #text > DIV > BODY > HTML > #document to 162 of #text > DIV > BODY > HTML > #document toDOMRange:range from 162 of #text > DIV > BODY > HTML > #document to 162 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 519EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 161 of #text > DIV > BODY > HTML > #document to 161 of #text > DIV > BODY > HTML > #document toDOMRange:range from 162 of #text > DIV > BODY > HTML > #document to 162 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
777520EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
778521EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
779 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
780 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
781 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
782 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 162 of #text > DIV > BODY > HTML > #document to 163 of #text > DIV > BODY > HTML > #document toDOMRange:range from 163 of #text > DIV > BODY > HTML > #document to 163 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 522EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 162 of #text > DIV > BODY > HTML > #document to 162 of #text > DIV > BODY > HTML > #document toDOMRange:range from 163 of #text > DIV > BODY > HTML > #document to 163 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
783523EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
784524EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
785525EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
786 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
787 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
788 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 163 of #text > DIV > BODY > HTML > #document to 164 of #text > DIV > BODY > HTML > #document toDOMRange:range from 164 of #text > DIV > BODY > HTML > #document to 164 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 526EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 162 of #text > DIV > BODY > HTML > #document to 162 of #text > DIV > BODY > HTML > #document toDOMRange:range from 164 of #text > DIV > BODY > HTML > #document to 164 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
789527EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
790528EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
791 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
792 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 164 of #text > DIV > BODY > HTML > #document to 165 of #text > DIV > BODY > HTML > #document toDOMRange:range from 165 of #text > DIV > BODY > HTML > #document to 165 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 529EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 164 of #text > DIV > BODY > HTML > #document to 164 of #text > DIV > BODY > HTML > #document toDOMRange:range from 165 of #text > DIV > BODY > HTML > #document to 165 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
793530EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
794531EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
795 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
796 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 165 of #text > DIV > BODY > HTML > #document to 166 of #text > DIV > BODY > HTML > #document toDOMRange:range from 166 of #text > DIV > BODY > HTML > #document to 166 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 532EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 165 of #text > DIV > BODY > HTML > #document to 165 of #text > DIV > BODY > HTML > #document toDOMRange:range from 166 of #text > DIV > BODY > HTML > #document to 166 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
797533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
798534EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
799 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
800 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 166 of #text > DIV > BODY > HTML > #document to 167 of #text > DIV > BODY > HTML > #document toDOMRange:range from 167 of #text > DIV > BODY > HTML > #document to 167 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 535EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 166 of #text > DIV > BODY > HTML > #document to 166 of #text > DIV > BODY > HTML > #document toDOMRange:range from 167 of #text > DIV > BODY > HTML > #document to 167 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
801536EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
802537EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
803 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
804 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 167 of #text > DIV > BODY > HTML > #document to 168 of #text > DIV > BODY > HTML > #document toDOMRange:range from 168 of #text > DIV > BODY > HTML > #document to 168 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 538EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 167 of #text > DIV > BODY > HTML > #document to 167 of #text > DIV > BODY > HTML > #document toDOMRange:range from 168 of #text > DIV > BODY > HTML > #document to 168 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
805539EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
806540EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
807 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
808 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
809 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
810 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 168 of #text > DIV > BODY > HTML > #document to 169 of #text > DIV > BODY > HTML > #document toDOMRange:range from 169 of #text > DIV > BODY > HTML > #document to 169 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 541EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 168 of #text > DIV > BODY > HTML > #document to 168 of #text > DIV > BODY > HTML > #document toDOMRange:range from 169 of #text > DIV > BODY > HTML > #document to 169 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
811542EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
812543EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
813544EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
814 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
815 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
816 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 169 of #text > DIV > BODY > HTML > #document to 170 of #text > DIV > BODY > HTML > #document toDOMRange:range from 170 of #text > DIV > BODY > HTML > #document to 170 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 545EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 168 of #text > DIV > BODY > HTML > #document to 168 of #text > DIV > BODY > HTML > #document toDOMRange:range from 170 of #text > DIV > BODY > HTML > #document to 170 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
817546EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
818547EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
819 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
820 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 170 of #text > DIV > BODY > HTML > #document to 171 of #text > DIV > BODY > HTML > #document toDOMRange:range from 171 of #text > DIV > BODY > HTML > #document to 171 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 548EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 170 of #text > DIV > BODY > HTML > #document to 170 of #text > DIV > BODY > HTML > #document toDOMRange:range from 171 of #text > DIV > BODY > HTML > #document to 171 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
821549EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
822550EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
823 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
824 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 171 of #text > DIV > BODY > HTML > #document to 172 of #text > DIV > BODY > HTML > #document toDOMRange:range from 172 of #text > DIV > BODY > HTML > #document to 172 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 551EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 171 of #text > DIV > BODY > HTML > #document to 171 of #text > DIV > BODY > HTML > #document toDOMRange:range from 172 of #text > DIV > BODY > HTML > #document to 172 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
825552EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
826553EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
827 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
828 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 172 of #text > DIV > BODY > HTML > #document to 173 of #text > DIV > BODY > HTML > #document toDOMRange:range from 173 of #text > DIV > BODY > HTML > #document to 173 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 554EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 172 of #text > DIV > BODY > HTML > #document to 172 of #text > DIV > BODY > HTML > #document toDOMRange:range from 173 of #text > DIV > BODY > HTML > #document to 173 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
829555EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
830556EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
831 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
832 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 173 of #text > DIV > BODY > HTML > #document to 174 of #text > DIV > BODY > HTML > #document toDOMRange:range from 174 of #text > DIV > BODY > HTML > #document to 174 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 557EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 173 of #text > DIV > BODY > HTML > #document to 173 of #text > DIV > BODY > HTML > #document toDOMRange:range from 174 of #text > DIV > BODY > HTML > #document to 174 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
833558EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
834559EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
835 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
836 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 174 of #text > DIV > BODY > HTML > #document to 175 of #text > DIV > BODY > HTML > #document toDOMRange:range from 175 of #text > DIV > BODY > HTML > #document to 175 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 560EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 174 of #text > DIV > BODY > HTML > #document to 174 of #text > DIV > BODY > HTML > #document toDOMRange:range from 175 of #text > DIV > BODY > HTML > #document to 175 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
837561EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
838562EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
839 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
840 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
841 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
842 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 175 of #text > DIV > BODY > HTML > #document to 176 of #text > DIV > BODY > HTML > #document toDOMRange:range from 176 of #text > DIV > BODY > HTML > #document to 176 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 563EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 175 of #text > DIV > BODY > HTML > #document to 175 of #text > DIV > BODY > HTML > #document toDOMRange:range from 176 of #text > DIV > BODY > HTML > #document to 176 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
843564EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
844565EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
845566EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
846 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
847 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
848 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 176 of #text > DIV > BODY > HTML > #document to 177 of #text > DIV > BODY > HTML > #document toDOMRange:range from 177 of #text > DIV > BODY > HTML > #document to 177 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 567EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 175 of #text > DIV > BODY > HTML > #document to 175 of #text > DIV > BODY > HTML > #document toDOMRange:range from 177 of #text > DIV > BODY > HTML > #document to 177 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
849568EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
850569EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
851 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
852 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 177 of #text > DIV > BODY > HTML > #document to 178 of #text > DIV > BODY > HTML > #document toDOMRange:range from 178 of #text > DIV > BODY > HTML > #document to 178 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 570EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 177 of #text > DIV > BODY > HTML > #document to 177 of #text > DIV > BODY > HTML > #document toDOMRange:range from 178 of #text > DIV > BODY > HTML > #document to 178 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
853571EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
854572EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
855 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
856 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 178 of #text > DIV > BODY > HTML > #document to 179 of #text > DIV > BODY > HTML > #document toDOMRange:range from 179 of #text > DIV > BODY > HTML > #document to 179 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 573EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 178 of #text > DIV > BODY > HTML > #document to 178 of #text > DIV > BODY > HTML > #document toDOMRange:range from 179 of #text > DIV > BODY > HTML > #document to 179 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
857574EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
858575EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
859 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
860 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
861 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
862 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 179 of #text > DIV > BODY > HTML > #document to 180 of #text > DIV > BODY > HTML > #document toDOMRange:range from 180 of #text > DIV > BODY > HTML > #document to 180 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 576EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 179 of #text > DIV > BODY > HTML > #document to 179 of #text > DIV > BODY > HTML > #document toDOMRange:range from 180 of #text > DIV > BODY > HTML > #document to 180 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
863577EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
864578EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
865579EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
866 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
867 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
868 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 180 of #text > DIV > BODY > HTML > #document to 181 of #text > DIV > BODY > HTML > #document toDOMRange:range from 181 of #text > DIV > BODY > HTML > #document to 181 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 580EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 179 of #text > DIV > BODY > HTML > #document to 179 of #text > DIV > BODY > HTML > #document toDOMRange:range from 181 of #text > DIV > BODY > HTML > #document to 181 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
869581EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
870582EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
871 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
872 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 181 of #text > DIV > BODY > HTML > #document to 182 of #text > DIV > BODY > HTML > #document toDOMRange:range from 182 of #text > DIV > BODY > HTML > #document to 182 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 583EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 181 of #text > DIV > BODY > HTML > #document to 181 of #text > DIV > BODY > HTML > #document toDOMRange:range from 182 of #text > DIV > BODY > HTML > #document to 182 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
873584EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
874585EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
875 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
876 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
877 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
878 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 182 of #text > DIV > BODY > HTML > #document to 183 of #text > DIV > BODY > HTML > #document toDOMRange:range from 183 of #text > DIV > BODY > HTML > #document to 183 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 586EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 182 of #text > DIV > BODY > HTML > #document to 182 of #text > DIV > BODY > HTML > #document toDOMRange:range from 183 of #text > DIV > BODY > HTML > #document to 183 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
879587EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
880588EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
881589EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
882 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
883 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
884 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 183 of #text > DIV > BODY > HTML > #document to 184 of #text > DIV > BODY > HTML > #document toDOMRange:range from 184 of #text > DIV > BODY > HTML > #document to 184 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 590EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 182 of #text > DIV > BODY > HTML > #document to 182 of #text > DIV > BODY > HTML > #document toDOMRange:range from 184 of #text > DIV > BODY > HTML > #document to 184 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
885591EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
886592EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
887 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
888 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 184 of #text > DIV > BODY > HTML > #document to 185 of #text > DIV > BODY > HTML > #document toDOMRange:range from 185 of #text > DIV > BODY > HTML > #document to 185 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 593EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 184 of #text > DIV > BODY > HTML > #document to 184 of #text > DIV > BODY > HTML > #document toDOMRange:range from 185 of #text > DIV > BODY > HTML > #document to 185 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
889594EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
890595EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
891 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
892 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 185 of #text > DIV > BODY > HTML > #document to 186 of #text > DIV > BODY > HTML > #document toDOMRange:range from 186 of #text > DIV > BODY > HTML > #document to 186 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 596EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 185 of #text > DIV > BODY > HTML > #document to 185 of #text > DIV > BODY > HTML > #document toDOMRange:range from 186 of #text > DIV > BODY > HTML > #document to 186 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
893597EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
894598EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
895 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
896 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 186 of #text > DIV > BODY > HTML > #document to 187 of #text > DIV > BODY > HTML > #document toDOMRange:range from 187 of #text > DIV > BODY > HTML > #document to 187 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 599EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 186 of #text > DIV > BODY > HTML > #document to 186 of #text > DIV > BODY > HTML > #document toDOMRange:range from 187 of #text > DIV > BODY > HTML > #document to 187 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
897600EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
898601EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
899 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
900 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
901 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
902 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 187 of #text > DIV > BODY > HTML > #document to 188 of #text > DIV > BODY > HTML > #document toDOMRange:range from 188 of #text > DIV > BODY > HTML > #document to 188 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 602EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 187 of #text > DIV > BODY > HTML > #document to 187 of #text > DIV > BODY > HTML > #document toDOMRange:range from 188 of #text > DIV > BODY > HTML > #document to 188 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
903603EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
904604EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
905605EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
906 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
907 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
908 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 188 of #text > DIV > BODY > HTML > #document to 189 of #text > DIV > BODY > HTML > #document toDOMRange:range from 189 of #text > DIV > BODY > HTML > #document to 189 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 606EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 187 of #text > DIV > BODY > HTML > #document to 187 of #text > DIV > BODY > HTML > #document toDOMRange:range from 189 of #text > DIV > BODY > HTML > #document to 189 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
909607EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
910608EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
911 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
912 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 189 of #text > DIV > BODY > HTML > #document to 190 of #text > DIV > BODY > HTML > #document toDOMRange:range from 190 of #text > DIV > BODY > HTML > #document to 190 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 609EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 189 of #text > DIV > BODY > HTML > #document to 189 of #text > DIV > BODY > HTML > #document toDOMRange:range from 190 of #text > DIV > BODY > HTML > #document to 190 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
913610EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
914611EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
915 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
916 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 190 of #text > DIV > BODY > HTML > #document to 191 of #text > DIV > BODY > HTML > #document toDOMRange:range from 191 of #text > DIV > BODY > HTML > #document to 191 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 612EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 190 of #text > DIV > BODY > HTML > #document to 190 of #text > DIV > BODY > HTML > #document toDOMRange:range from 191 of #text > DIV > BODY > HTML > #document to 191 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
917613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
918614EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
919 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
920 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
921 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
922 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 191 of #text > DIV > BODY > HTML > #document to 192 of #text > DIV > BODY > HTML > #document toDOMRange:range from 192 of #text > DIV > BODY > HTML > #document to 192 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 615EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 191 of #text > DIV > BODY > HTML > #document to 191 of #text > DIV > BODY > HTML > #document toDOMRange:range from 192 of #text > DIV > BODY > HTML > #document to 192 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
923616EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
924617EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
925618EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
926 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
927 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
928 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 192 of #text > DIV > BODY > HTML > #document to 193 of #text > DIV > BODY > HTML > #document toDOMRange:range from 193 of #text > DIV > BODY > HTML > #document to 193 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 619EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 191 of #text > DIV > BODY > HTML > #document to 191 of #text > DIV > BODY > HTML > #document toDOMRange:range from 193 of #text > DIV > BODY > HTML > #document to 193 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
929620EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
930621EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
931 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
932 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 193 of #text > DIV > BODY > HTML > #document to 194 of #text > DIV > BODY > HTML > #document toDOMRange:range from 194 of #text > DIV > BODY > HTML > #document to 194 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 622EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 193 of #text > DIV > BODY > HTML > #document to 193 of #text > DIV > BODY > HTML > #document toDOMRange:range from 194 of #text > DIV > BODY > HTML > #document to 194 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
933623EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
934624EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
935 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
936 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 194 of #text > DIV > BODY > HTML > #document to 195 of #text > DIV > BODY > HTML > #document toDOMRange:range from 195 of #text > DIV > BODY > HTML > #document to 195 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 625EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 194 of #text > DIV > BODY > HTML > #document to 194 of #text > DIV > BODY > HTML > #document toDOMRange:range from 195 of #text > DIV > BODY > HTML > #document to 195 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
937626EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
938627EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
939 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
940 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
941 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
942 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 195 of #text > DIV > BODY > HTML > #document to 196 of #text > DIV > BODY > HTML > #document toDOMRange:range from 196 of #text > DIV > BODY > HTML > #document to 196 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 628EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 195 of #text > DIV > BODY > HTML > #document to 195 of #text > DIV > BODY > HTML > #document toDOMRange:range from 196 of #text > DIV > BODY > HTML > #document to 196 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
943629EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
944630EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
945631EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
946 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
947 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
948 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 196 of #text > DIV > BODY > HTML > #document to 197 of #text > DIV > BODY > HTML > #document toDOMRange:range from 197 of #text > DIV > BODY > HTML > #document to 197 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 632EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 195 of #text > DIV > BODY > HTML > #document to 195 of #text > DIV > BODY > HTML > #document toDOMRange:range from 197 of #text > DIV > BODY > HTML > #document to 197 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
949633EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
950634EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
951 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
952 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 197 of #text > DIV > BODY > HTML > #document to 198 of #text > DIV > BODY > HTML > #document toDOMRange:range from 198 of #text > DIV > BODY > HTML > #document to 198 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 635EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 197 of #text > DIV > BODY > HTML > #document to 197 of #text > DIV > BODY > HTML > #document toDOMRange:range from 198 of #text > DIV > BODY > HTML > #document to 198 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
953636EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
954637EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
955 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
956 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
957 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
958 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 198 of #text > DIV > BODY > HTML > #document to 199 of #text > DIV > BODY > HTML > #document toDOMRange:range from 199 of #text > DIV > BODY > HTML > #document to 199 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 638EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 198 of #text > DIV > BODY > HTML > #document to 198 of #text > DIV > BODY > HTML > #document toDOMRange:range from 199 of #text > DIV > BODY > HTML > #document to 199 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
959639EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
960640EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
961641EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
962 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
963 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
964 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 199 of #text > DIV > BODY > HTML > #document to 200 of #text > DIV > BODY > HTML > #document toDOMRange:range from 200 of #text > DIV > BODY > HTML > #document to 200 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 642EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 198 of #text > DIV > BODY > HTML > #document to 198 of #text > DIV > BODY > HTML > #document toDOMRange:range from 200 of #text > DIV > BODY > HTML > #document to 200 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
965643EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
966644EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
967 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
968 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
969 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
970 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 200 of #text > DIV > BODY > HTML > #document to 201 of #text > DIV > BODY > HTML > #document toDOMRange:range from 201 of #text > DIV > BODY > HTML > #document to 201 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 645EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 200 of #text > DIV > BODY > HTML > #document to 200 of #text > DIV > BODY > HTML > #document toDOMRange:range from 201 of #text > DIV > BODY > HTML > #document to 201 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
971646EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
972647EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
973648EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
974 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
975 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
976 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 201 of #text > DIV > BODY > HTML > #document to 202 of #text > DIV > BODY > HTML > #document toDOMRange:range from 202 of #text > DIV > BODY > HTML > #document to 202 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 649EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 200 of #text > DIV > BODY > HTML > #document to 200 of #text > DIV > BODY > HTML > #document toDOMRange:range from 202 of #text > DIV > BODY > HTML > #document to 202 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
977650EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
978651EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
979 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
980 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 202 of #text > DIV > BODY > HTML > #document to 203 of #text > DIV > BODY > HTML > #document toDOMRange:range from 203 of #text > DIV > BODY > HTML > #document to 203 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 652EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 202 of #text > DIV > BODY > HTML > #document to 202 of #text > DIV > BODY > HTML > #document toDOMRange:range from 203 of #text > DIV > BODY > HTML > #document to 203 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
981653EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
982654EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
983 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
984 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 203 of #text > DIV > BODY > HTML > #document to 204 of #text > DIV > BODY > HTML > #document toDOMRange:range from 204 of #text > DIV > BODY > HTML > #document to 204 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 655EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 203 of #text > DIV > BODY > HTML > #document to 203 of #text > DIV > BODY > HTML > #document toDOMRange:range from 204 of #text > DIV > BODY > HTML > #document to 204 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
985656EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
986657EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
987 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
988 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 204 of #text > DIV > BODY > HTML > #document to 205 of #text > DIV > BODY > HTML > #document toDOMRange:range from 205 of #text > DIV > BODY > HTML > #document to 205 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 658EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 204 of #text > DIV > BODY > HTML > #document to 204 of #text > DIV > BODY > HTML > #document toDOMRange:range from 205 of #text > DIV > BODY > HTML > #document to 205 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
989659EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
990660EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
991 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
992 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 205 of #text > DIV > BODY > HTML > #document to 206 of #text > DIV > BODY > HTML > #document toDOMRange:range from 206 of #text > DIV > BODY > HTML > #document to 206 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 661EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 205 of #text > DIV > BODY > HTML > #document to 205 of #text > DIV > BODY > HTML > #document toDOMRange:range from 206 of #text > DIV > BODY > HTML > #document to 206 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
993662EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
994663EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
995 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
996 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
997 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
998 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 206 of #text > DIV > BODY > HTML > #document to 207 of #text > DIV > BODY > HTML > #document toDOMRange:range from 207 of #text > DIV > BODY > HTML > #document to 207 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 664EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 206 of #text > DIV > BODY > HTML > #document to 206 of #text > DIV > BODY > HTML > #document toDOMRange:range from 207 of #text > DIV > BODY > HTML > #document to 207 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
999665EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1000666EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1001667EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1002 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1003 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1004 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 207 of #text > DIV > BODY > HTML > #document to 208 of #text > DIV > BODY > HTML > #document toDOMRange:range from 208 of #text > DIV > BODY > HTML > #document to 208 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 668EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 206 of #text > DIV > BODY > HTML > #document to 206 of #text > DIV > BODY > HTML > #document toDOMRange:range from 208 of #text > DIV > BODY > HTML > #document to 208 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1005669EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1006670EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1007 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1008 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 208 of #text > DIV > BODY > HTML > #document to 209 of #text > DIV > BODY > HTML > #document toDOMRange:range from 209 of #text > DIV > BODY > HTML > #document to 209 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 671EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 208 of #text > DIV > BODY > HTML > #document to 208 of #text > DIV > BODY > HTML > #document toDOMRange:range from 209 of #text > DIV > BODY > HTML > #document to 209 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1009672EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010673EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1011 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1012 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 209 of #text > DIV > BODY > HTML > #document to 210 of #text > DIV > BODY > HTML > #document toDOMRange:range from 210 of #text > DIV > BODY > HTML > #document to 210 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 674EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 209 of #text > DIV > BODY > HTML > #document to 209 of #text > DIV > BODY > HTML > #document toDOMRange:range from 210 of #text > DIV > BODY > HTML > #document to 210 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1013675EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1014676EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1015 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1016 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 210 of #text > DIV > BODY > HTML > #document to 211 of #text > DIV > BODY > HTML > #document toDOMRange:range from 211 of #text > DIV > BODY > HTML > #document to 211 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 677EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 210 of #text > DIV > BODY > HTML > #document to 210 of #text > DIV > BODY > HTML > #document toDOMRange:range from 211 of #text > DIV > BODY > HTML > #document to 211 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1017678EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1018679EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1019 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1020 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 211 of #text > DIV > BODY > HTML > #document to 212 of #text > DIV > BODY > HTML > #document toDOMRange:range from 212 of #text > DIV > BODY > HTML > #document to 212 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 680EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 211 of #text > DIV > BODY > HTML > #document to 211 of #text > DIV > BODY > HTML > #document toDOMRange:range from 212 of #text > DIV > BODY > HTML > #document to 212 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1021681EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1022682EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1023 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1024 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 212 of #text > DIV > BODY > HTML > #document to 213 of #text > DIV > BODY > HTML > #document toDOMRange:range from 213 of #text > DIV > BODY > HTML > #document to 213 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 683EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 212 of #text > DIV > BODY > HTML > #document to 212 of #text > DIV > BODY > HTML > #document toDOMRange:range from 213 of #text > DIV > BODY > HTML > #document to 213 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1025684EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1026685EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1027 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1028 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 213 of #text > DIV > BODY > HTML > #document to 214 of #text > DIV > BODY > HTML > #document toDOMRange:range from 214 of #text > DIV > BODY > HTML > #document to 214 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 686EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 213 of #text > DIV > BODY > HTML > #document to 213 of #text > DIV > BODY > HTML > #document toDOMRange:range from 214 of #text > DIV > BODY > HTML > #document to 214 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1029687EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1030688EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1031 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1032 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 214 of #text > DIV > BODY > HTML > #document to 215 of #text > DIV > BODY > HTML > #document toDOMRange:range from 215 of #text > DIV > BODY > HTML > #document to 215 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 689EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 214 of #text > DIV > BODY > HTML > #document to 214 of #text > DIV > BODY > HTML > #document toDOMRange:range from 215 of #text > DIV > BODY > HTML > #document to 215 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1033690EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1034691EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1035 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1036 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 215 of #text > DIV > BODY > HTML > #document to 216 of #text > DIV > BODY > HTML > #document toDOMRange:range from 216 of #text > DIV > BODY > HTML > #document to 216 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 692EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 215 of #text > DIV > BODY > HTML > #document to 215 of #text > DIV > BODY > HTML > #document toDOMRange:range from 216 of #text > DIV > BODY > HTML > #document to 216 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1037693EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1038694EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1039 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1040 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 216 of #text > DIV > BODY > HTML > #document to 217 of #text > DIV > BODY > HTML > #document toDOMRange:range from 217 of #text > DIV > BODY > HTML > #document to 217 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 695EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 216 of #text > DIV > BODY > HTML > #document to 216 of #text > DIV > BODY > HTML > #document toDOMRange:range from 217 of #text > DIV > BODY > HTML > #document to 217 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1041696EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1042697EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1043 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1044 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 217 of #text > DIV > BODY > HTML > #document to 218 of #text > DIV > BODY > HTML > #document toDOMRange:range from 218 of #text > DIV > BODY > HTML > #document to 218 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 698EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 217 of #text > DIV > BODY > HTML > #document to 217 of #text > DIV > BODY > HTML > #document toDOMRange:range from 218 of #text > DIV > BODY > HTML > #document to 218 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1045699EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1046700EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1047 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1048 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 218 of #text > DIV > BODY > HTML > #document to 219 of #text > DIV > BODY > HTML > #document toDOMRange:range from 219 of #text > DIV > BODY > HTML > #document to 219 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 701EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 218 of #text > DIV > BODY > HTML > #document to 218 of #text > DIV > BODY > HTML > #document toDOMRange:range from 219 of #text > DIV > BODY > HTML > #document to 219 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1049702EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1050703EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1051 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1052 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1053 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1054 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 219 of #text > DIV > BODY > HTML > #document to 220 of #text > DIV > BODY > HTML > #document toDOMRange:range from 220 of #text > DIV > BODY > HTML > #document to 220 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 704EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 219 of #text > DIV > BODY > HTML > #document to 219 of #text > DIV > BODY > HTML > #document toDOMRange:range from 220 of #text > DIV > BODY > HTML > #document to 220 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1055705EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1056706EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1057707EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1058 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1059 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1060 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 220 of #text > DIV > BODY > HTML > #document to 221 of #text > DIV > BODY > HTML > #document toDOMRange:range from 221 of #text > DIV > BODY > HTML > #document to 221 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 708EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 219 of #text > DIV > BODY > HTML > #document to 219 of #text > DIV > BODY > HTML > #document toDOMRange:range from 221 of #text > DIV > BODY > HTML > #document to 221 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1061709EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1062710EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1063 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1064 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 221 of #text > DIV > BODY > HTML > #document to 222 of #text > DIV > BODY > HTML > #document toDOMRange:range from 222 of #text > DIV > BODY > HTML > #document to 222 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 711EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 221 of #text > DIV > BODY > HTML > #document to 221 of #text > DIV > BODY > HTML > #document toDOMRange:range from 222 of #text > DIV > BODY > HTML > #document to 222 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1065712EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1066713EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1067 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1068 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 222 of #text > DIV > BODY > HTML > #document to 223 of #text > DIV > BODY > HTML > #document toDOMRange:range from 223 of #text > DIV > BODY > HTML > #document to 223 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 714EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 222 of #text > DIV > BODY > HTML > #document to 222 of #text > DIV > BODY > HTML > #document toDOMRange:range from 223 of #text > DIV > BODY > HTML > #document to 223 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1069715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1070716EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1071 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1072 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 223 of #text > DIV > BODY > HTML > #document to 224 of #text > DIV > BODY > HTML > #document toDOMRange:range from 224 of #text > DIV > BODY > HTML > #document to 224 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 717EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 223 of #text > DIV > BODY > HTML > #document to 223 of #text > DIV > BODY > HTML > #document toDOMRange:range from 224 of #text > DIV > BODY > HTML > #document to 224 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1073718EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1074719EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1075 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1076 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 224 of #text > DIV > BODY > HTML > #document to 225 of #text > DIV > BODY > HTML > #document toDOMRange:range from 225 of #text > DIV > BODY > HTML > #document to 225 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 720EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 224 of #text > DIV > BODY > HTML > #document to 224 of #text > DIV > BODY > HTML > #document toDOMRange:range from 225 of #text > DIV > BODY > HTML > #document to 225 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1077721EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1078722EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1079 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1080 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 225 of #text > DIV > BODY > HTML > #document to 226 of #text > DIV > BODY > HTML > #document toDOMRange:range from 226 of #text > DIV > BODY > HTML > #document to 226 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 723EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 225 of #text > DIV > BODY > HTML > #document to 225 of #text > DIV > BODY > HTML > #document toDOMRange:range from 226 of #text > DIV > BODY > HTML > #document to 226 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1081724EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1082725EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1083 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1084 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 226 of #text > DIV > BODY > HTML > #document to 227 of #text > DIV > BODY > HTML > #document toDOMRange:range from 227 of #text > DIV > BODY > HTML > #document to 227 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 726EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 226 of #text > DIV > BODY > HTML > #document to 226 of #text > DIV > BODY > HTML > #document toDOMRange:range from 227 of #text > DIV > BODY > HTML > #document to 227 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1085727EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1086728EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1087 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1088 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 227 of #text > DIV > BODY > HTML > #document to 228 of #text > DIV > BODY > HTML > #document toDOMRange:range from 228 of #text > DIV > BODY > HTML > #document to 228 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 729EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 227 of #text > DIV > BODY > HTML > #document to 227 of #text > DIV > BODY > HTML > #document toDOMRange:range from 228 of #text > DIV > BODY > HTML > #document to 228 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1089730EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1090731EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1091 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1092 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1093 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1094 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 228 of #text > DIV > BODY > HTML > #document to 229 of #text > DIV > BODY > HTML > #document toDOMRange:range from 229 of #text > DIV > BODY > HTML > #document to 229 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 732EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 228 of #text > DIV > BODY > HTML > #document to 228 of #text > DIV > BODY > HTML > #document toDOMRange:range from 229 of #text > DIV > BODY > HTML > #document to 229 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1095733EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1096734EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1097735EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1098 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1099 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1100 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 229 of #text > DIV > BODY > HTML > #document to 230 of #text > DIV > BODY > HTML > #document toDOMRange:range from 230 of #text > DIV > BODY > HTML > #document to 230 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 736EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 228 of #text > DIV > BODY > HTML > #document to 228 of #text > DIV > BODY > HTML > #document toDOMRange:range from 230 of #text > DIV > BODY > HTML > #document to 230 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1101737EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1102738EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1103 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1104 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 230 of #text > DIV > BODY > HTML > #document to 231 of #text > DIV > BODY > HTML > #document toDOMRange:range from 231 of #text > DIV > BODY > HTML > #document to 231 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 739EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 230 of #text > DIV > BODY > HTML > #document to 230 of #text > DIV > BODY > HTML > #document toDOMRange:range from 231 of #text > DIV > BODY > HTML > #document to 231 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1105740EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1106741EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1107 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1108 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 231 of #text > DIV > BODY > HTML > #document to 232 of #text > DIV > BODY > HTML > #document toDOMRange:range from 232 of #text > DIV > BODY > HTML > #document to 232 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 742EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 231 of #text > DIV > BODY > HTML > #document to 231 of #text > DIV > BODY > HTML > #document toDOMRange:range from 232 of #text > DIV > BODY > HTML > #document to 232 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1109743EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1110744EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1111 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1112 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1113 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1114 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 232 of #text > DIV > BODY > HTML > #document to 233 of #text > DIV > BODY > HTML > #document toDOMRange:range from 233 of #text > DIV > BODY > HTML > #document to 233 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 745EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 232 of #text > DIV > BODY > HTML > #document to 232 of #text > DIV > BODY > HTML > #document toDOMRange:range from 233 of #text > DIV > BODY > HTML > #document to 233 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1115746EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1116747EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1117748layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/typing-around-br-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:range from 2 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 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 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1815EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1916EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2017EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 18EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
2319EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2420EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2722EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2823EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
29 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3125EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3226EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3327EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3428EDITING 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
3529EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3630EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
37 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
38 EDITING 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
 31EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3932EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4033EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
41 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
42 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 34EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
4335EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4436EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4537EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4638EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4739EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
48 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
49 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 40EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
5041EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5142EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
52 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
53 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 43EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5444EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5545EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
56 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
57 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 46EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5847EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5948EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6049EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6150EDITING 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
6251EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6352EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
64 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
65 EDITING 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
 53EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6654EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6755EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
68 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
69 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 56EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
7057EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7158EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7259EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7360EDITING 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
7461EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7562EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
76 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77 EDITING 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
 63EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7864EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7965EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
80 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
81 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 66EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
8267EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8368EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8469EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8570EDITING 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
8671EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8772EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
89 EDITING 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
 73EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9074EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9175EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
92 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
93 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 76EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
9477EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9578EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9679EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9780EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9881EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
100 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 82EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
10183EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10284EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
103 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
104 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 85EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
10586EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10687EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
107 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
108 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 88EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
10989EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11090EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11191layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/inserting/typing-around-image-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
88EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of SPAN > DIV > BODY > HTML > #document to 2 of 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
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING 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
 11EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > 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:range from 2 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
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
1715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1816EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1917EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2018EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of SPAN > DIV > BODY > HTML > #document to 4 of 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
2119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2220EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING 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
 21EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2522EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2623EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
2925EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3026EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3127EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3228EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
35 EDITING 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
 29EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 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
3630EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3731EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
38 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
39 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
4033EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4134EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
42 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
43 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 35EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4436EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4537EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4638EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4739EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of SPAN > DIV > BODY > HTML > #document to 7 of 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
4840EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4941EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
50 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
51 EDITING 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
 42EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5243EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5344EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
54 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 45EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > SPAN > DIV > BODY > HTML > #document to 2 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
5646EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5747EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5848layer at (0,0) size 800x600
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
1010EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1111EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1212EDITING DELEGATE: shouldInsertText:there should be a single trailing space between the '.' and the last character in this sentence 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:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 96 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 96 of #text > DIV > DIV > BODY > HTML > #document to 96 of #text > 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 96 of #text > DIV > DIV > BODY > HTML > #document to 96 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716layer at (0,0) size 800x600
95957

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
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 2 of #text > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 of #text > 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
128EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
139EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1410EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > BODY > HTML > #document to 1 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
1812EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1913EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2014EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
2216EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2317EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > BODY > HTML > #document to 3 of #text > DIV > BODY > HTML > #document
2418EDITING 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
 19EDITING 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
2720EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2821EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2922EDITING 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
 23EDITING 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
3224EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3325EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3426EDITING 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
3527EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3628EDITING 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
 29EDITING 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
3930EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4031EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
41 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
42 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
43 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
4533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4634EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4735EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
48 EDITING 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
 36EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
5037EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5138EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
52 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
53 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 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
 39EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 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
5440EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5541EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5642EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
5945EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6046EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 4 of #text > DIV > DIV > BODY > HTML > #document
6147EDITING 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
 48EDITING 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
6449EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6550EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6651EDITING 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
 52EDITING 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
6953EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7054EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7155EDITING 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
7256EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7357EDITING 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
 58EDITING 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
7659EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7760EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
78 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
79 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
80 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
81 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 61EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
8262EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8363EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8464EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
85 EDITING 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
 65EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
8766EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8867EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
8968EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
90 EDITING 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
 69EDITING 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
9270EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9371EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9472EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
96 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
97 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 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
 73EDITING 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
9874EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9975EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10076EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
10480EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10581EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 5 of #text > DIV > DIV > BODY > HTML > #document
10682EDITING 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
 83EDITING 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
10984EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11085EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11186EDITING 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
 87EDITING 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
11488EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11589EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11690EDITING 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
11791EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11892EDITING 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
 93EDITING 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
12194EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12295EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
123 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
124 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
125 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
126 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 96EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
12797EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12898EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
12999EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
130 EDITING 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
 100EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
132101EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
133102EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
134103EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
135 EDITING 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
 104EDITING 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
137105EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
138106EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
139107EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
140 EDITING 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
 108EDITING 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
142109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
143110EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
144 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
145 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 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
 111EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 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
146112EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
147113EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
148114EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
153119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
154120EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document
155121EDITING 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
 122EDITING 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
158123EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
159124EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
160125EDITING 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
 126EDITING 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
163127EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
164128EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
165129EDITING 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
166130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
167131EDITING 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
 132EDITING 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
170133EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
171134EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
172 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
173 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
174 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
175 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 135EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
176136EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
177137EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
178138EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
179 EDITING 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
 139EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
181140EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
182141EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
183142EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
184 EDITING 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
 143EDITING 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
186144EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
187145EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
188146EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
189 EDITING 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
 147EDITING 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
191148EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
192149EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
193150EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
194 EDITING 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
 151EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
196152EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
197153EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
198154EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
199 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
200 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
201 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
 155EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
202156EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
203157EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
204158EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
210164EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
211165EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 7 of #text > DIV > DIV > BODY > HTML > #document
212166EDITING 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
 167EDITING 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
215168EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
216169EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
217170EDITING 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
 171EDITING 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
220172EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
221173EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
222174EDITING 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
223175EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
224176EDITING 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
 177EDITING 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
227178EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
228179EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
229 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
230 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
231 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
232 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 180EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
233181EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
234182EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
235183EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
236 EDITING 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
 184EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
238185EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
239186EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
240187EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
241 EDITING 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
 188EDITING 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
243189EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
244190EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
245191EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
246 EDITING 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
 192EDITING 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
248193EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
249194EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
250195EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
251 EDITING 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
 196EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
253197EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
254198EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
255199EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
256 EDITING 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
 200EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
258201EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
259202EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
260 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
261 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
 203EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
262204EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
263205EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
264206EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
271213EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
272214EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 8 of #text > DIV > DIV > BODY > HTML > #document
273215EDITING 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
 216EDITING 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
276217EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
277218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
278219EDITING 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
 220EDITING 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
281221EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
282222EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
283223EDITING 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
284224EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
285225EDITING 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
 226EDITING 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
288227EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
289228EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
290 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
291 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
292 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
293 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 229EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
294230EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
295231EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
296232EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
297 EDITING 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
 233EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
299234EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
300235EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
301236EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
302 EDITING 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
 237EDITING 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
304238EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
305239EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
306240EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
307 EDITING 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
 241EDITING 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
309242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
310243EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
311244EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
312 EDITING 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
 245EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
314246EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
315247EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
316248EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
317 EDITING 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
 249EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
319250EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
320251EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
321252EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
322 EDITING 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
 253EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
324254EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
325255EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
326256EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
327 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
328 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
329 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 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
 257EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
330258EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
331259EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
332260EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
340268EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
341269EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 9 of #text > DIV > DIV > BODY > HTML > #document
342270EDITING 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
 271EDITING 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
345272EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
346273EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
347274EDITING 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
 275EDITING 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
350276EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
351277EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
352278EDITING 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
353279EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
354280EDITING 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
 281EDITING 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
357282EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
358283EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
359 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
360 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
361 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
362 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 284EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
363285EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
364286EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
365287EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
366 EDITING 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
 288EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
368289EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
369290EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
370291EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
371 EDITING 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
 292EDITING 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
373293EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
374294EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
375295EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
376 EDITING 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
 296EDITING 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
378297EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
379298EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
380299EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
381 EDITING 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
 300EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
383301EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
384302EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
385303EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
386 EDITING 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
 304EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
388305EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
389306EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
390307EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
391 EDITING 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
 308EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
393309EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
394310EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
395311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
396 EDITING 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
 312EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
398313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
399314EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
400 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
401 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
 315EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
402316EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
403317EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
404318EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
413327EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
414328EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 10 of #text > DIV > DIV > BODY > HTML > #document
415329EDITING 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
 330EDITING 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
418331EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
419332EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
420333EDITING 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
 334EDITING 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
423335EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
424336EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
425337EDITING 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
426338EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
427339EDITING 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
 340EDITING 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
430341EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
431342EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
432 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
433 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
434 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
435 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 343EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
436344EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
437345EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
438346EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
439 EDITING 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
 347EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
441348EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
442349EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
443350EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
444 EDITING 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
 351EDITING 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
446352EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
447353EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
448354EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
449 EDITING 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
 355EDITING 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
451356EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
452357EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
453358EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
454 EDITING 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
 359EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
456360EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
457361EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
458362EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
459 EDITING 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
 363EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
461364EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
462365EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
463366EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
464 EDITING 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
 367EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
466368EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
467369EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
468370EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
469 EDITING 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
 371EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
471372EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
472373EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
473374EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
474 EDITING 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
 375EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
476376EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
477377EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
478378EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
479 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
480 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
481 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
 379EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
482380EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
483381EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
484382EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
494392EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
495393EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 11 of #text > DIV > DIV > BODY > HTML > #document
496394EDITING 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
 395EDITING 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
499396EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
500397EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
501398EDITING 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
 399EDITING 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
504400EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
505401EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
506402EDITING 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
507403EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
508404EDITING 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
 405EDITING 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
511406EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
512407EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
513 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
514 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
515 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
516 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 408EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
517409EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
518410EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
519411EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
520 EDITING 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
 412EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
522413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
523414EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
524415EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
525 EDITING 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
 416EDITING 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
527417EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
528418EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
529419EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
530 EDITING 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
 420EDITING 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
532421EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
533422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
534423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
535 EDITING 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
 424EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
537425EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
538426EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
539427EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
540 EDITING 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
 428EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
542429EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
543430EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
544431EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
545 EDITING 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
 432EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
547433EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
548434EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
549435EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
550 EDITING 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
 436EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
552437EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
553438EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
554439EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
555 EDITING 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
 440EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
557441EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
558442EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
559443EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
560 EDITING 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
 444EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
562445EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
563446EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
564 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
565 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 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
 447EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 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
566448EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
567449EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
568450EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
579461EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
580462EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document
581463EDITING 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
 464EDITING 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
584465EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
585466EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
586467EDITING 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
 468EDITING 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
589469EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
590470EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
591471EDITING 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
95957

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
95957

LayoutTests/platform/qt/editing/pasteboard/bad-placeholder-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:range from 5 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > BODY > HTML > #document to 16 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
76EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
87EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
98layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/pasteboard/cut-text-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1111EDITING DELEGATE: shouldDeleteDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1614EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1715layer at (0,0) size 800x600
1816 RenderView at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/pasteboard/merge-end-borders-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:range from 0 of #text > 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > 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
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
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
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: 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
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING 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
 10EDITING 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
1211EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1312EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1413EDITING 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
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > DIV > BODY > HTML > #document to 2 of #text > B > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > B > DIV > DIV > BODY > HTML > #document to 2 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING 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 2 of #text > B > DIV > DIV > BODY > HTML > #document to 2 of #text > B > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1816EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1917layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
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
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: 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
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1010EDITING 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
 11EDITING 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
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
4242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4343EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
4444EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
45 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
46 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > 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
 45EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > 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
4746EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4847EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4948layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
4242EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4343EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
4444EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
45 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
46 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > 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
 45EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > 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
4746EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4847EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
4948EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
101101EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
102102EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
103103EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
104 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
105 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > DIV > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 104EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
106105EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
107106EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
108107EDITING DELEGATE: shouldInsertNode:#document-fragment replacingDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
1414EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1616EDITING DELEGATE: shouldInsertText:Bar replacingDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document givenAction:WebViewInsertActionPasted
17 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
18 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > SPAN > DIV > BODY > HTML > #document to 4 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1918EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2019EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2120layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/pasteboard/paste-text-at-tabspan-003-expected.txt

@@EDITING DELEGATE: shouldInsertNode:#docu
1010EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > SPAN > SPAN > DIV > BODY > HTML > #document to 3 of #text > SPAN > 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
1111EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1212EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
13 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING 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
 13EDITING 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 #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1514EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1615EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1716layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/pasteboard/pasting-object-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:range from 0 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
 6EDITING 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
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: shouldChangeSelectedDO
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
77EDITING 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
 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
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 > DIV > BODY > HTML > #document to 1 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 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
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
1715EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1816EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
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
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/selection/move-between-blocks-no-001-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
9292EDITING DELEGATE: shouldDeleteDOMRange:range from 27 of #text > SPAN > DIV > BODY > HTML > #document to 28 of #text > SPAN > DIV > BODY > HTML > #document
9393EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9494EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
96 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 26 of #text > SPAN > DIV > BODY > HTML > #document to 27 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 27 of #text > SPAN > DIV > BODY > HTML > #document to 27 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 95EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 26 of #text > SPAN > DIV > BODY > HTML > #document to 26 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 27 of #text > SPAN > DIV > BODY > HTML > #document to 27 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9796EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9897EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9998EDITING DELEGATE: shouldDeleteDOMRange:range from 26 of #text > SPAN > DIV > BODY > HTML > #document to 27 of #text > SPAN > DIV > BODY > HTML > #document
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/selection/replace-selection-1-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:range from 5 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > A > DIV > BODY > HTML > #document to 4 of #text > A > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > DIV > BODY > HTML > #document to 5 of #text > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > A > DIV > BODY > HTML > #document to 4 of #text > A > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
109EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

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
95957

LayoutTests/platform/qt/editing/style/create-block-for-style-001-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 DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING 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
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88layer at (0,0) size 800x600
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/style/create-block-for-style-004-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 DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING 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
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING 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
 11EDITING 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
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1414layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/style/create-block-for-style-007-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 DIV > DIV > DIV > BODY > HTML > #document to 0 of DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 5EDITING 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
66EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
77EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING 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
 7EDITING 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
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1010layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING 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
 7EDITING 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
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1010layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/style/create-block-for-style-011-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 1 of #text > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING 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
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1111layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/style/create-block-for-style-012-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 #text > DIV > DIV > DIV > DIV > BODY > HTML > #document to 1 of #text > DIV > DIV > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 8EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
 9EDITING 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
910EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1011EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1112layer at (0,0) size 800x600
95957

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
95957

LayoutTests/platform/qt/editing/style/designmode-expected.txt

11EDITING DELEGATE: shouldBeginEditingInDOMRange:range from 0 of BODY > HTML > #document to 5 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 #text > B > DIV > BODY > HTML > #document to 25 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 25 of #text > B > DIV > BODY > HTML > #document to 25 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 0 of #text > B > DIV > BODY > HTML > #document to 25 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87layer at (0,0) size 800x600
95957

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
95957

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
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
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
77EDITING 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
 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
99EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1010EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1111EDITING 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
 12EDITING 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
1413EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1514EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1615EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
1817EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1918EDITING 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
2019EDITING 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
 20EDITING 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
2321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2523layer at (0,0) size 800x600
95957

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

@@EDITING DELEGATE: webViewDidChangeSelect
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
66EDITING 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
 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
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
99EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1010EDITING 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
 11EDITING 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
1312EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1413EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1514layer at (0,0) size 800x600
95957

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
95957

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
95957

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
95957

LayoutTests/platform/qt/editing/style/unbold-in-bold-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 1 of #text > B > DIV > BODY > HTML > #document to 1 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > DIV > BODY > HTML > #document to 1 of #text > B > DIV > 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > B > DIV > BODY > HTML > #document to 2 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > B > DIV > BODY > HTML > #document to 4 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > B > DIV > BODY > HTML > #document to 4 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 of #text > B > DIV > BODY > HTML > #document to 3 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 4 of #text > B > DIV > BODY > HTML > #document to 4 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > B > DIV > BODY > HTML > #document to 5 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > B > DIV > BODY > HTML > #document to 5 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 16EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 of #text > B > DIV > BODY > HTML > #document to 4 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > B > DIV > BODY > HTML > #document to 5 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2117EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2218EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > B > DIV > BODY > HTML > #document to 6 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > B > DIV > BODY > HTML > #document to 6 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 19EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > B > DIV > BODY > HTML > #document to 5 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 6 of #text > B > DIV > BODY > HTML > #document to 6 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2520EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2621EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
29 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
30 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > B > DIV > BODY > HTML > #document to 7 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > B > DIV > BODY > HTML > #document to 7 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > B > DIV > BODY > HTML > #document to 6 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 7 of #text > B > DIV > BODY > HTML > #document to 7 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3123EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3224EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3325EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
35 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
36 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > B > DIV > BODY > HTML > #document to 8 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > B > DIV > BODY > HTML > #document to 8 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 26EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > B > DIV > BODY > HTML > #document to 6 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 8 of #text > B > DIV > BODY > HTML > #document to 8 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3727EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3828EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
39 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
40 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > B > DIV > BODY > HTML > #document to 9 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > B > DIV > BODY > HTML > #document to 9 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 29EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 of #text > B > DIV > BODY > HTML > #document to 8 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 9 of #text > B > DIV > BODY > HTML > #document to 9 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4130EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4231EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
43 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
44 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > B > DIV > BODY > HTML > #document to 10 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 10 of #text > B > DIV > BODY > HTML > #document to 10 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 32EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > B > DIV > BODY > HTML > #document to 9 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 10 of #text > B > DIV > BODY > HTML > #document to 10 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4533EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4634EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
47 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
48 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > B > DIV > BODY > HTML > #document to 11 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > B > DIV > BODY > HTML > #document to 11 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 35EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > B > DIV > BODY > HTML > #document to 10 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > B > DIV > BODY > HTML > #document to 11 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4936EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5037EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
51 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
52 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > B > DIV > BODY > HTML > #document to 12 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > B > DIV > BODY > HTML > #document to 12 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 38EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > B > DIV > BODY > HTML > #document to 11 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > B > DIV > BODY > HTML > #document to 12 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5339EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5440EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
55 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
56 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > B > DIV > BODY > HTML > #document to 13 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > B > DIV > BODY > HTML > #document to 13 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 41EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > B > DIV > BODY > HTML > #document to 12 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > B > DIV > BODY > HTML > #document to 13 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5742EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5843EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
59 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
60 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
61 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
62 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > B > DIV > BODY > HTML > #document to 14 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > B > DIV > BODY > HTML > #document to 14 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > B > DIV > BODY > HTML > #document to 13 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > B > DIV > BODY > HTML > #document to 14 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6345EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6446EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
6547EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
67 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
68 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > B > DIV > BODY > HTML > #document to 15 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 15 of #text > B > DIV > BODY > HTML > #document to 15 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 48EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > B > DIV > BODY > HTML > #document to 13 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 15 of #text > B > DIV > BODY > HTML > #document to 15 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6949EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7050EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
71 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
72 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > B > DIV > BODY > HTML > #document to 16 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > B > DIV > BODY > HTML > #document to 16 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 51EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > B > DIV > BODY > HTML > #document to 15 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > B > DIV > BODY > HTML > #document to 16 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7352EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7453EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
75 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > B > DIV > BODY > HTML > #document to 17 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > B > DIV > BODY > HTML > #document to 17 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 54EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > B > DIV > BODY > HTML > #document to 16 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 17 of #text > B > DIV > BODY > HTML > #document to 17 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
7755EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
7856EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
79 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
80 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > B > DIV > BODY > HTML > #document to 18 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > B > DIV > BODY > HTML > #document to 18 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 57EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > B > DIV > BODY > HTML > #document to 17 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > B > DIV > BODY > HTML > #document to 18 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8158EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8259EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
83 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
84 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 18 of #text > B > DIV > BODY > HTML > #document to 19 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 19 of #text > B > DIV > BODY > HTML > #document to 19 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 60EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 18 of #text > B > DIV > BODY > HTML > #document to 18 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 19 of #text > B > DIV > BODY > HTML > #document to 19 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8561EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8662EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 19 of #text > B > DIV > BODY > HTML > #document to 20 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > B > DIV > BODY > HTML > #document to 20 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 63EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 19 of #text > B > DIV > BODY > HTML > #document to 19 of #text > B > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > B > DIV > BODY > HTML > #document to 20 of #text > B > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
8964EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9065EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9166EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

LayoutTests/platform/qt/editing/undo/4063751-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:range from 2 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
 6EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 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
 9EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 3 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
1210EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1311EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 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
 12EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 4 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
1613EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1714EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 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
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 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
2016EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2117EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
 18EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
2419EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2520EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 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
2822EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2923EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
30 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
31 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 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
 24EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 8 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
3225EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3326EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
34 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
35 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
 27EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 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
3628EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3729EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
38 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
39 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
 30EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 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
4031EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4132EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
42 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
43 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 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
 33EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > DIV > DIV > BODY > HTML > #document to 11 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
4434EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4535EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
46 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
47 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 13 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > DIV > BODY > HTML > #document to 13 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 36EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > DIV > DIV > BODY > HTML > #document to 12 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > DIV > BODY > HTML > #document to 13 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
4837EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4938EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
50 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
51 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > DIV > BODY > HTML > #document to 14 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > DIV > BODY > HTML > #document to 14 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 39EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > DIV > BODY > HTML > #document to 13 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > DIV > BODY > HTML > #document to 14 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5240EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5341EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
54 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
55 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > DIV > BODY > HTML > #document to 15 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 15 of #text > DIV > DIV > BODY > HTML > #document to 15 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 42EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > DIV > BODY > HTML > #document to 14 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 15 of #text > DIV > DIV > BODY > HTML > #document to 15 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
5643EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5744EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
58 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
59 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > DIV > DIV > BODY > HTML > #document to 16 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > DIV > BODY > HTML > #document to 16 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 45EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 15 of #text > DIV > DIV > BODY > HTML > #document to 15 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 16 of #text > DIV > DIV > BODY > HTML > #document to 16 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6046EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6147EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
62 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
63 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > DIV > DIV > BODY > HTML > #document to 17 of #text > DIV > 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
 48EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 16 of #text > DIV > DIV > BODY > HTML > #document to 16 of #text > DIV > 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
6449EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6550EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
66 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
67 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 51EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 17 of #text > DIV > DIV > BODY > HTML > #document to 17 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
6852EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
6953EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7054EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
8569EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8670EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8771EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
88 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
89 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 72EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
9073EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9174EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
9275EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
10790EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10891EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10992EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
110 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
111 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 3 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 93EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > DIV > DIV > BODY > HTML > #document to 2 of #text > DIV > DIV > BODY > HTML > #document toDOMRange:range from 18 of #text > DIV > DIV > BODY > HTML > #document to 18 of #text > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
11294EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
11395EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11496layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/redo-typing-001-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:range from 0 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
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-combined-delete-boundary-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
1919EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > B > SPAN > DIV > BODY > HTML > #document to 1 of #text > B > SPAN > DIV > BODY > HTML > #document
2020EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2121EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2423EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2524EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2625layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-combined-delete-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1818EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1919EDITING DELEGATE: shouldDeleteDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document
2020EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2321EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
29 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > SPAN > DIV > BODY > HTML > #document to 10 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 9 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 9 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3023EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3124EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3225layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-delete-boundary-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
66EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > B > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document
77EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
88EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > B > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > B > SPAN > DIV > BODY > HTML > #document to 1 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
10 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
119EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1210EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > B > SPAN > DIV > BODY > HTML > #document to 1 of #text > B > SPAN > DIV > BODY > HTML > #document
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: shouldDeleteDOMRange:r
2220EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 23EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2724EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2825EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2926layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-delete-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
1818EDITING DELEGATE: shouldDeleteDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document
1919EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2020EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2321EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
29 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > SPAN > DIV > BODY > HTML > #document to 10 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 9 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 22EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 9 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3023EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3124EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3225layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-forward-delete-boundary-expected.txt

@@EDITING DELEGATE: webViewDidChange:WebVi
1515EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > B > SPAN > DIV > BODY > HTML > #document to 1 of #text > B > SPAN > DIV > BODY > HTML > #document
1616EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1717EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > SPAN > DIV > BODY > HTML > #document to 7 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 18EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 2 of #text > B > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2119EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2220EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2321layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-forward-delete-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1414EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1515EDITING DELEGATE: shouldDeleteDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document
1616EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
17 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 6 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
18 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1917EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
20 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
23 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 9 of #text > SPAN > DIV > BODY > HTML > #document to 10 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 9 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 18EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 5 of #text > SPAN > DIV > BODY > HTML > #document toDOMRange:range from 5 of #text > SPAN > DIV > BODY > HTML > #document to 9 of #text > SPAN > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2619EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2720EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2821layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-misspellings-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 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
9 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
10 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 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
118EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
129EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1310EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
14 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 7 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 11EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 6 of #text > DIV > BODY > HTML > #document to 6 of #text > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1712EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1813EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
19 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
20 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 14EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 14 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2315EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2416EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2517EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
26 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
27 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
28 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 14 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 18EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 13 of #text > DIV > BODY > HTML > #document to 13 of #text > DIV > BODY > HTML > #document toDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
2919EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3020EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
31 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
32 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
33 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
34 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document toDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 21EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 20 of #text > DIV > BODY > HTML > #document to 20 of #text > DIV > BODY > HTML > #document toDOMRange:range from 21 of #text > DIV > BODY > HTML > #document to 21 of #text > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
3522EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
3623EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
3724EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification

@@EDITING DELEGATE: webViewDidChangeSelect
4532EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4633EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
4734EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
48 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
49 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
50 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
51 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
52 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
53 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
54 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
55 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
5635EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
5736layer at (0,0) size 800x600
5837 RenderView at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/undo/undo-typing-001-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:range from 0 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
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > BODY > HTML > #document to 0 of 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
65EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
76EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
87EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
95957

LayoutTests/platform/qt/editing/unsupported-content/list-delete-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 0 of #text > DIV > DIV > BODY > HTML > #document
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 0 of LI > UL > DIV > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document toDOMRange:range from 0 of LI > UL > DIV > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1716EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1817EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1918layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/list-delete-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 0 of #text > DIV > DIV > BODY > HTML > #document
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 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
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > BODY > HTML > #document to 0 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
1716EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1817EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1918layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/list-type-after-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:range from 10 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 10 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 10 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 11 of #text > LI > UL > 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:range from 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 11 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 13 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 13 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 13EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 12 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 13 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 13 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1714EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1815EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1916layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/list-type-before-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:range from 0 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 4EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of LI > UL > DIV > DIV > BODY > HTML > #document to 0 of LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 1 of #text > LI > UL > 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:range from 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 1 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 2 of #text > LI > UL > DIV > 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:range from 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 2 of #text > LI > UL > DIV > DIV > BODY > HTML > #document toDOMRange:range from 3 of #text > LI > UL > DIV > DIV > BODY > HTML > #document to 3 of #text > LI > UL > DIV > DIV > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1411EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1512EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1613layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/table-delete-001-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
2121EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2222EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2323EDITING DELEGATE: shouldDeleteDOMRange:range from 0 of #text > TD > TR > TBODY > TABLE > DIV > DIV > BODY > HTML > #document to 2 of DIV > DIV > BODY > HTML > #document
24 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
25 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
 24EDITING 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
2625EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2726EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2827layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/table-delete-002-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1818EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1919EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2020EDITING DELEGATE: shouldDeleteDOMRange:range from 7 of #text > DIV > DIV > BODY > HTML > #document to 6 of #text > DIV > DIV > BODY > HTML > #document
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 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
 21EDITING 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
2322EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2423EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2524layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/table-delete-003-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1212EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1313EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1414EDITING DELEGATE: shouldDeleteDOMRange:range from 1 of #text > DIV > DIV > B > BODY > HTML > #document to 1 of #text > TD > TR > TBODY > TABLE > DIV > DIV > B > BODY > HTML > #document
15 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
16 EDITING DELEGATE: shouldChangeSelectedDOMRange:(null) toDOMRange:range from 1 of DIV > DIV > B > BODY > HTML > #document to 1 of DIV > DIV > B > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
 15EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 0 of DIV > DIV > B > BODY > HTML > #document to 0 of DIV > DIV > B > BODY > HTML > #document toDOMRange:range from 1 of DIV > DIV > B > BODY > HTML > #document to 1 of DIV > DIV > B > BODY > HTML > #document affinity:NSSelectionAffinityDownstream stillSelecting:FALSE
1716EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1817EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1918layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/table-type-after-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
1414EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of 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
1515EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1616EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
17 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
18 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 17EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
1918EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2019EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
21 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
22 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 20EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
2321EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
2422EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
2523layer at (0,0) size 800x600
95957

LayoutTests/platform/qt/editing/unsupported-content/table-type-before-expected.txt

@@EDITING DELEGATE: webViewDidChangeSelect
44EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 of DIV > DIV > BODY > HTML > #document to 2 of 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
55EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
66EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
7 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
8 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 2 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
 7EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 1 of #text > DIV > DIV > BODY > HTML > #document to 1 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
98EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
109EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
11 EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
12 EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
 10EDITING DELEGATE: shouldChangeSelectedDOMRange:range from 2 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
1311EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification
1412EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification
1513layer at (0,0) size 800x600
95957

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

@@layer at (0,0) size 800x600
1010 RenderBlock (anonymous) at (0,22) size 784x0
1111 RenderText {#text} at (0,0) size 0x0
1212 RenderText {#text} at (0,0) size 0x0
 13caret: position 2 of body
95957

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
95957