|
|
Created:
4 years, 7 months ago by yosin_UTC9 Modified:
3 years, 8 months ago CC:
blink-reviews, chromium-reviews Base URL:
https://chromium.googlesource.com/chromium/src.git@master Target Ref:
refs/pending/heads/master Project:
chromium Visibility:
Public. |
DescriptionExplicit management of FrameSelection availability
This patch makes |FrameSelection| availability explicitly by observing document
attach/detach with introducing |FrameSelection::isAvailable| and checking it
before using |FrameSelection| to avoid using unavailable |FrameSelection| for
improving code health.
The lifetime of |FrameSelection| is as same as |LocalFrame|, but it is
available during associated |Document| object is attached to |LayoutView|.
Before this patch, Blink uses unavailable |FrameSeleciton| in some code path,
e.g. callbacks invoked by |FrameSelection::prepareDestructor| via setting
null positions to selection for resetting, and |SelectionController| attempts
to use |FrameSelection| associated to detached |Document|.
After this patch, |FrameSelection| holds pointer to attached |Document| or
|nullptr| to indicate availability of |FrameSelection|.
Note: I considered to make |DOMWindow| to own |FrameSelection| for avoiding to
observe document attach/detach, but I didn't. Because lifetime of |DOMWindow|
isn't as same as |Document|, e.g. |DOMWindow| is constructed before |Document|
and lifetime of |DOMWindow| is longer than |LayoutView| of |Document|. Given
that, I need to observer attach/detach and it isn't simpler than this patch.
BUG=n/a
TEST=n/a; no behavior changes
Committed: https://crrev.com/9c38a83b780e6cbd388579067b137ef12a39ff0c
Cr-Commit-Position: refs/heads/master@{#398519}
Patch Set 1 #Patch Set 2 : 2016-05-24T18:21:56 #Patch Set 3 : 2016-05-25T11:03:53 #Patch Set 4 : 2016-05-25T16:05:55 #Patch Set 5 : 2016-05-26T17:39:59 #Patch Set 6 : 2016-05-27T17:09:07 #Patch Set 7 : 2016-05-30T16:28:47 #Patch Set 8 : 2016-05-31T11:02:12 #Patch Set 9 : 2016-06-01T14:02:04 #Patch Set 10 : 2016-06-06T17:09:04 #
Total comments: 13
Patch Set 11 : 2016-06-08T12:48:46 #Patch Set 12 : 2016-06-08T18:08:39 #Messages
Total messages: 45 (30 generated)
Description was changed from ========== 2016-05-23T18:45:50 BUG= ========== to ========== 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html editing/deleting/delete-after-span-ws-002.html editing/deleting/delete-after-span-ws-003.html editing/deleting/delete-cell-contents-win.html editing/execCommand/crash-extend-selection-forward.html editing/execCommand/createLink.html editing/execCommand/indent-nested-lists-1.html editing/execCommand/indent-nested-lists-2.html editing/execCommand/indent-nested-lists-3.html editing/execCommand/indent-nested-lists-4.html editing/execCommand/indent-nested-lists-5.html editing/execCommand/indent-nested-lists-6.html editing/execCommand/indent-nested-lists-7.html editing/execCommand/indent-with-style.html editing/execCommand/outdent-nested-lists-1.html editing/execCommand/outdent-nested-lists-2.html editing/execCommand/outdent-nested-lists-3.html editing/execCommand/outdent-nested-lists-4.html editing/execCommand/unlink.html editing/pasteboard/drag-drop-dead-frame.html editing/pasteboard/drag-drop-to-data-url.html editing/pasteboard/paste-table-cells.html editing/selection/transformed-selection-rects.html editing/undo/undo-indent.html inspector/sources/debugger-async/async-callstack-events.html virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html ==========
Description was changed from ========== 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html editing/deleting/delete-after-span-ws-002.html editing/deleting/delete-after-span-ws-003.html editing/deleting/delete-cell-contents-win.html editing/execCommand/crash-extend-selection-forward.html editing/execCommand/createLink.html editing/execCommand/indent-nested-lists-1.html editing/execCommand/indent-nested-lists-2.html editing/execCommand/indent-nested-lists-3.html editing/execCommand/indent-nested-lists-4.html editing/execCommand/indent-nested-lists-5.html editing/execCommand/indent-nested-lists-6.html editing/execCommand/indent-nested-lists-7.html editing/execCommand/indent-with-style.html editing/execCommand/outdent-nested-lists-1.html editing/execCommand/outdent-nested-lists-2.html editing/execCommand/outdent-nested-lists-3.html editing/execCommand/outdent-nested-lists-4.html editing/execCommand/unlink.html editing/pasteboard/drag-drop-dead-frame.html editing/pasteboard/drag-drop-to-data-url.html editing/pasteboard/paste-table-cells.html editing/selection/transformed-selection-rects.html editing/undo/undo-indent.html inspector/sources/debugger-async/async-callstack-events.html virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html ========== to ========== 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html +selection change editing/deleting/delete-after-span-ws-002.html +selection change editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change editing/execCommand/crash-extend-selection-forward.html +selection change editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html +selection change editing/deleting/delete-after-span-ws-002.html +selection change editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change editing/execCommand/crash-extend-selection-forward.html +selection change editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html +selection change editing/deleting/delete-after-span-ws-002.html +selection change editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change editing/execCommand/crash-extend-selection-forward.html +selection change editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html +selection change editing/deleting/delete-after-span-ws-002.html +selection change editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change editing/execCommand/crash-extend-selection-forward.html +selection change editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html +selection change editing/deleting/delete-after-span-ws-002.html +selection change editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change editing/execCommand/crash-extend-selection-forward.html +selection change editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
The CQ bit was checked by yosin@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2001083002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2001083002/40001
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: editing/deleting/delete-after-span-ws-001.html +selection change editing/deleting/delete-after-span-ws-002.html +selection change editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change editing/execCommand/crash-extend-selection-forward.html +selection change editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change editing/execCommand/indent-nested-lists-1.html +selection change editing/execCommand/indent-nested-lists-2.html +selection change editing/execCommand/indent-nested-lists-3.html +selection change editing/execCommand/indent-nested-lists-4.html +selection change editing/execCommand/indent-nested-lists-5.html +selection change editing/execCommand/indent-nested-lists-6.html +selection change editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change editing/execCommand/outdent-nested-lists-1.html +selection change editing/execCommand/outdent-nested-lists-2.html +selection change editing/execCommand/outdent-nested-lists-3.html +selection change editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html - 0) setSelection (async-callstack-events.html:24) - 1) doTestSelectionChange (async-callstack-events.html:31) + 0) setSelection (async-callstack-events.html:22) + 1) doTestSelectionChange (async-callstack-events.html:29) FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change WIP editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change WIP editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change editing/pasteboard/drag-drop-dead-frame.html +selection change WIP editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change WIP editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change WIP editing/pasteboard/drag-drop-dead-frame.html +selection change editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change WIP editing/pasteboard/drag-drop-dead-frame.html +selection change WIP editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: WIP editing/deleting/delete-after-span-ws-001.html +selection change WIP editing/deleting/delete-after-span-ws-002.html +selection change WIP editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change WIP editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change WIP editing/execCommand/indent-nested-lists-1.html +selection change WIP editing/execCommand/indent-nested-lists-2.html +selection change WIP editing/execCommand/indent-nested-lists-3.html +selection change WIP editing/execCommand/indent-nested-lists-4.html +selection change WIP editing/execCommand/indent-nested-lists-5.html +selection change WIP editing/execCommand/indent-nested-lists-6.html +selection change WIP editing/execCommand/indent-nested-lists-7.html +selection change WIP editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change WIP editing/pasteboard/drag-drop-dead-frame.html +selection change WIP editing/pasteboard/drag-drop-to-data-url.html +selection change WIP editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change WIP editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: DONE editing/deleting/delete-after-span-ws-001.html +selection change DONE editing/deleting/delete-after-span-ws-002.html +selection change DONE editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change DONE editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change DONE editing/execCommand/indent-nested-lists-1.html +selection change DONE editing/execCommand/indent-nested-lists-2.html +selection change DONE editing/execCommand/indent-nested-lists-3.html +selection change DONE editing/execCommand/indent-nested-lists-4.html +selection change DONE editing/execCommand/indent-nested-lists-5.html +selection change DONE editing/execCommand/indent-nested-lists-6.html +selection change DONE editing/execCommand/indent-nested-lists-7.html +selection change DONE editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change DONE editing/pasteboard/drag-drop-dead-frame.html +selection change DONE editing/pasteboard/drag-drop-to-data-url.html +selection change DONE editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change DONE editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ==========
The CQ bit was checked by yosin@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2001083002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/2001083002/140001
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
The CQ bit was checked by yosin@chromium.org to run a CQ dry run
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2001083002/180001
The CQ bit was unchecked by commit-bot@chromium.org
Dry run: This issue passed the CQ dry run.
Description was changed from ========== editing/pasteboard/paste-removing-iframe.html SpellChecker::markAndReplaceFo editing/pasteboard/drop-text-events-sideeffect-crash.html DragController::concludeEditDrag editing/selection/longpress-selection-in-iframe-removed-crash.html electionController::handleGestureLongPress editing/selection/selection-in-iframe-removed-crash.html DOMSelection::addRange, new range doesn't associate to frame's document. editing/shadow/doubleclick-on-meter-in-shadow-crash.html electionController::handleMousePressEventTripleClick editing/spelling/spellcheck-async-remove-frame.html SpellChecker::markAndReplaceFor 2016-05-23T18:45:50 Following tests are failed: DONE editing/deleting/delete-after-span-ws-001.html +selection change DONE editing/deleting/delete-after-span-ws-002.html +selection change DONE editing/deleting/delete-after-span-ws-003.html +selection change WIP editing/deleting/delete-cell-contents-win.html +selection change DONE editing/execCommand/crash-extend-selection-forward.html +selection change DONE editing/execCommand/createLink.html +selection change DONE editing/execCommand/indent-nested-lists-1.html +selection change DONE editing/execCommand/indent-nested-lists-2.html +selection change DONE editing/execCommand/indent-nested-lists-3.html +selection change DONE editing/execCommand/indent-nested-lists-4.html +selection change DONE editing/execCommand/indent-nested-lists-5.html +selection change DONE editing/execCommand/indent-nested-lists-6.html +selection change DONE editing/execCommand/indent-nested-lists-7.html +selection change DONE editing/execCommand/indent-with-style.html +selection change WIP editing/execCommand/outdent-nested-lists-1.html +selection change WIP editing/execCommand/outdent-nested-lists-2.html +selection change WIP editing/execCommand/outdent-nested-lists-3.html +selection change WIP editing/execCommand/outdent-nested-lists-4.html +selection change WIP editing/execCommand/unlink.html +selection change DONE editing/pasteboard/drag-drop-dead-frame.html +selection change DONE editing/pasteboard/drag-drop-to-data-url.html +selection change DONE editing/pasteboard/paste-table-cells.html +selection change DONE editing/selection/transformed-selection-rects.html +selection change DONE editing/undo/undo-indent.html +selection change DONE inspector/sources/debugger-async/async-callstack-events.html FLAKY virtual/prefer_compositing_to_lcd_text/compositing/overflow/nested-render-surfaces-with-intervening-clip.html image diff ========== to ========== Explicit management of FrameSelection availability This patch makes |FrameSelection| availability explicitly by observing document attach/detach with introducing |FrameSelection::isAvailable| and checking it before using |FrameSelection| to avoid using unavailable |FrameSelection| for improving code health. The lifetime of |FrameSelection| is as same as |LocalFrame|, but it is available during associated |Document| object is attached to |LayoutView|. Before this patch, Blink uses unavailable |FrameSeleciton| in some code path, e.g. callbacks invoked by |FrameSelection::prepareDestructor| via setting null positions to selection for resetting, and |SelectionController| attempts to use |FrameSelection| associated to detached |Document|. After this patch, |FrameSelection| holds pointer to attached |Document| or |nullptr| to indicate availability of |FrameSelection|. Note: I considered to make |DOMWindow| to own |FrameSelection| for avoiding to observe document attach/detach, but I didn't. Because lifetime of |DOMWindow| isn't as same as |Document|, e.g. |DOMWindow| is constructed before |Document| and lifetime of |DOMWindow| is longer than |LayoutView| of |Document|. Given that, I need to observer attach/detach and it isn't simpler than this patch. BUG=n/a TEST=n/a; no behavior changes ==========
yosin@chromium.org changed reviewers: + tkent@chromium.org, yoichio@chromium.org
PTAL
https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/FrameSelection.cpp (left): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.cpp:104: if (shouldAlwaysUseDirectionalSelection(m_frame)) Why can we remove this code block? https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.cpp:287: // <http://bugs.webkit.org/show_bug.cgi?id=23464>: Infinite recursion at Why can we remove this code block? https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/FrameSelection.cpp (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.cpp:674: { We should have DCHECK(document). https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/FrameSelection.h (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.h:97: const Document& document() const; We should add a comment like |This function must not be called when !isAvailable()|. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/SelectionController.cpp (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/SelectionController.cpp:468: nit: This change is unnecessary. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/SelectionEditor.cpp (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/SelectionEditor.cpp:130: DCHECK(!m_document); We should have DCHECK(document) https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp (left): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp:566: DCHECK(request); Why do you remove the DCHECK?
PTAL https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/FrameSelection.cpp (left): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.cpp:104: if (shouldAlwaysUseDirectionalSelection(m_frame)) On 2016/06/07 at 23:41:59, tkent wrote: > Why can we remove this code block? Setting |VisibleSelection.isDirectional| done in |SelectionEditor::documentAttached()| rather than here. We should set |VisibleSelection.isDirectional| each time |FrameSelection| associated to |Document| for fresh selection. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.cpp:287: // <http://bugs.webkit.org/show_bug.cgi?id=23464>: Infinite recursion at On 2016/06/07 at 23:41:59, tkent wrote: > Why can we remove this code block? This can't be happened any more as proofed by no layout test failure. |newSelection| should be valid when this function called. If not, |SelectionEditor::setVisibleSelection()| asserts it. I'll add assert for |newSelection| in top of this function. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/FrameSelection.cpp (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/FrameSelection.cpp:674: { On 2016/06/07 at 23:41:59, tkent wrote: > We should have DCHECK(document). Done. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/SelectionController.cpp (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/SelectionController.cpp:468: On 2016/06/07 at 23:41:59, tkent wrote: > nit: This change is unnecessary. Done. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/SelectionEditor.cpp (right): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/SelectionEditor.cpp:130: DCHECK(!m_document); On 2016/06/07 at 23:41:59, tkent wrote: > We should have DCHECK(document) Done. https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... File third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp (left): https://codereview.chromium.org/2001083002/diff/180001/third_party/WebKit/Sou... third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp:566: DCHECK(request); On 2016/06/07 at 23:41:59, tkent wrote: > Why do you remove the DCHECK? Oops, it should be here. Done.
lgtm
The CQ bit was checked by yosin@chromium.org
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2001083002/200001
The CQ bit was unchecked by commit-bot@chromium.org
Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_...)
The CQ bit was checked by yosin@chromium.org
The patchset sent to the CQ was uploaded after l-g-t-m from tkent@chromium.org Link to the patchset: https://codereview.chromium.org/2001083002/#ps220001 (title: "2016-06-08T18:08:39")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/2001083002/220001
Message was sent while issue was closed.
Committed patchset #12 (id:220001)
Message was sent while issue was closed.
Description was changed from ========== Explicit management of FrameSelection availability This patch makes |FrameSelection| availability explicitly by observing document attach/detach with introducing |FrameSelection::isAvailable| and checking it before using |FrameSelection| to avoid using unavailable |FrameSelection| for improving code health. The lifetime of |FrameSelection| is as same as |LocalFrame|, but it is available during associated |Document| object is attached to |LayoutView|. Before this patch, Blink uses unavailable |FrameSeleciton| in some code path, e.g. callbacks invoked by |FrameSelection::prepareDestructor| via setting null positions to selection for resetting, and |SelectionController| attempts to use |FrameSelection| associated to detached |Document|. After this patch, |FrameSelection| holds pointer to attached |Document| or |nullptr| to indicate availability of |FrameSelection|. Note: I considered to make |DOMWindow| to own |FrameSelection| for avoiding to observe document attach/detach, but I didn't. Because lifetime of |DOMWindow| isn't as same as |Document|, e.g. |DOMWindow| is constructed before |Document| and lifetime of |DOMWindow| is longer than |LayoutView| of |Document|. Given that, I need to observer attach/detach and it isn't simpler than this patch. BUG=n/a TEST=n/a; no behavior changes ========== to ========== Explicit management of FrameSelection availability This patch makes |FrameSelection| availability explicitly by observing document attach/detach with introducing |FrameSelection::isAvailable| and checking it before using |FrameSelection| to avoid using unavailable |FrameSelection| for improving code health. The lifetime of |FrameSelection| is as same as |LocalFrame|, but it is available during associated |Document| object is attached to |LayoutView|. Before this patch, Blink uses unavailable |FrameSeleciton| in some code path, e.g. callbacks invoked by |FrameSelection::prepareDestructor| via setting null positions to selection for resetting, and |SelectionController| attempts to use |FrameSelection| associated to detached |Document|. After this patch, |FrameSelection| holds pointer to attached |Document| or |nullptr| to indicate availability of |FrameSelection|. Note: I considered to make |DOMWindow| to own |FrameSelection| for avoiding to observe document attach/detach, but I didn't. Because lifetime of |DOMWindow| isn't as same as |Document|, e.g. |DOMWindow| is constructed before |Document| and lifetime of |DOMWindow| is longer than |LayoutView| of |Document|. Given that, I need to observer attach/detach and it isn't simpler than this patch. BUG=n/a TEST=n/a; no behavior changes Committed: https://crrev.com/9c38a83b780e6cbd388579067b137ef12a39ff0c Cr-Commit-Position: refs/heads/master@{#398519} ==========
Message was sent while issue was closed.
Patchset 12 (id:??) landed as https://crrev.com/9c38a83b780e6cbd388579067b137ef12a39ff0c Cr-Commit-Position: refs/heads/master@{#398519} |