chromium/third_party/blink/web_tests/editing/execCommand/infinite-recursion-computeRectForRepaint.html

<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
    function go() {
        document.execCommand("selectall", false);
        document.designMode="on";
        document.execCommand("insertparagraph", false);
        document.execCommand("insertparagraph", false);
        document.execCommand("InsertImage", false);
        document.execCommand("selectall");
        document.execCommand("Strikethrough", false);
        document.execCommand("outdent", false);
        document.execCommand("InsertHorizontalRule", false);
        document.execCommand("SelectAll");
        document.execCommand("InsertOrderedList");
        document.execCommand("insertunorderedlist", false);
        document.execCommand("insertorderedlist");
        document.execCommand("InsertHorizontalRule", false);
        document.execCommand("delete");
        document.execCommand("Delete");
        document.execCommand("Delete", false);
        document.execCommand("InsertHorizontalRule", false);
        document.execCommand("insertorderedlist", false);
        document.execCommand("JustifyFull");
        document.execCommand("insertorderedlist");
        document.execCommand("insertunorderedlist");
        document.execCommand("insertunorderedlist", false);
        document.execCommand("Outdent");
        document.execCommand("selectall", false);
        document.execCommand("insertparagraph", false);
        document.execCommand("insertimage", false);
        document.execCommand("InsertUnorderedList", false);
        document.execCommand("insertorderedlist");
        document.execCommand("insertimage", false);
        document.execCommand("inserthorizontalrule", false);
        document.execCommand("Outdent");
        document.execCommand("outdent");
        document.execCommand("insertorderedlist");
        document.execCommand("outdent");
        document.execCommand("insertorderedlist");
    }
</script>
<body onload="test(go)">
</body>