| Index: LayoutTests/editing/execCommand/insert-ordered-list-crash2.html
|
| diff --git a/LayoutTests/editing/execCommand/insert-ordered-list-crash2.html b/LayoutTests/editing/execCommand/insert-ordered-list-crash2.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d493458dbc6b6ed192f1d0a553a9a3135d6e20e9
|
| --- /dev/null
|
| +++ b/LayoutTests/editing/execCommand/insert-ordered-list-crash2.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<div id="log"></div>
|
| +
|
| +<div contenteditable="true" id="div"><ol>
|
| +<li>AAA<br><br></li>
|
| +<li><br></li>
|
| +<li>BBB<br>CCC</li>
|
| +</ol></div>
|
| +<div>DDD</div>
|
| +<script>
|
| +test(function () {
|
| + getSelection().selectAllChildren(div);
|
| + document.execCommand("insertOrderedList");
|
| +});
|
| +</script>
|
| +</body>
|
| +</html>
|
|
|