| Index: third_party/WebKit/LayoutTests/editing/execCommand/insertunorderedlist-crash-in-domsubtreemodified-event.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/execCommand/insertunorderedlist-crash-in-domsubtreemodified-event.html b/third_party/WebKit/LayoutTests/editing/execCommand/insertunorderedlist-crash-in-domsubtreemodified-event.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ae7af6a00490e6402f9dc3fd66dd68597cbf5fa4
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/editing/execCommand/insertunorderedlist-crash-in-domsubtreemodified-event.html
|
| @@ -0,0 +1,18 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<dl>
|
| + >
|
| +</dl>
|
| +<table>
|
| +<div id="log"></div>
|
| +<script>
|
| +document.addEventListener("DOMSubtreeModified", function (event) {
|
| + document.execCommand('InsertUnorderedList');
|
| + event.srcElement.contentEditable = "true";
|
| +});
|
| +test(function () {
|
| + document.execCommand("SelectAll");
|
| + window.getSelection().getRangeAt(0).insertNode(document.createElement("div"));
|
| +});
|
| +</script>
|
|
|