InsertOrderedList crashes with mixed visibility |
|||||||
Issue descriptionDetailed report: https://cluster-fuzz.appspot.com/testcase?key=6243400816263168 Fuzzer: inferno_layout_test_unmodified Job Type: linux_debug_content_shell_drt Platform Id: linux Crash Type: ASSERT Crash Address: Crash State: ASSERTION FAILED: isStartOfParagraph(startOfParagraphToMove) blink::CompositeEditCommand::moveParagraph blink::InsertListCommand::moveParagraphOverPositionIntoEmptyListItem Minimized Testcase (1.20 Kb): https://cluster-fuzz.appspot.com/download/AMIfv97pgx-5MBKX2uA5yN6JhM_g1ivHGjE4mQ7LflhGEK8evEux4xbOIeAnZCD_Wm0wm7lr2CzoFH6xcoETuKIugfeynBzVLk0vDmRq4jv3MVbrp4CexJG-9cjApVpgpZJLl43qtLCtUQATOxf1OZvBISyzGI3WqA Filer: pucchakayala See https://dev.chromium.org/Home/chromium-security/bugs/reproducing-clusterfuzz-bugs for more information.
,
Mar 8 2016
Route to Editing triage
,
Mar 17 2016
Remove Cr-* labels, replace w/ component
,
Mar 22 2016
Assertion:
void CompositeEditCommand::moveParagraph(const VisiblePosition& startOfParagraphToMove, const VisiblePosition& endOfParagraphToMove, const VisiblePosition& destination, EditingState* editingState, bool preserveSelection, bool preserveStyle, Node* constrainingAncestor)
{
ASSERT(isStartOfParagraph(startOfParagraphToMove));
ASSERT(isEndOfParagraph(endOfParagraphToMove));
Both |startOfParagraphToMove| and |endOfParagraphToMove| are null.
DOM tree at assertion:
m_endingSelection.showTreeForThis()
BODY 0000017478B435C0 (editable)
INPUT 0000017478B43628 (editable)
#shadow-root 0000017478B43738
DIV 0000017478B43810 ID="inner-editor" (editable)
#text 0000017478B43878 "\n"
SE FORM 0000017478B438C8 CLASS="CLASS5 CLASS0" (editable)
OL 0000017478B43A58 (editable)
LI 0000017478B43AD0 (editable)
BR 0000017478B43B38 (editable)
BR 0000017478B439F0 (editable)
,
Mar 22 2016
Lower to Pri-2, since real world usage of InsertOrderedList is low.
Minimum script to reproduce: "border-top" property needs to repro. Why?
<!doctype html>
<style>
*{visibility:hidden;}
</style>
<input>
<div style="border-top:medium inset;visibility:visible;"></div>
<script>
document.execCommand('SelectAll')
document.designMode = 'on';
document.execCommand('InsertOrderedList');
</script>
,
Nov 22 2016
Removing EditIssue view restrictions from ClusterFuzz filed bugs. If you believe that this issue should still be restricted, please reapply the label. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
,
May 22 2017
Bulk set to Pri-3 for cluster fuzz bugs. Since these issues are happens with unusual HTML.
,
Jun 21 2017
ClusterFuzz testcase 6243400816263168 is flaky and no longer reproduces, so closing issue. If this is incorrect, please add ClusterFuzz-Wrong label and re-open the issue. |
|||||||
►
Sign in to add a comment |
|||||||
Comment 1 by pucchakayala@chromium.org
, Mar 8 2016Owner: tkent@chromium.org
Status: Assigned (was: Available)