| Index: third_party/WebKit/LayoutTests/paint/invalidation/remove-anonymous-block-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/remove-anonymous-block-crash.html b/third_party/WebKit/LayoutTests/paint/invalidation/remove-anonymous-block-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..39ed91cf967b2f6b43d8b44d3eb2ab35867cf85e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/invalidation/remove-anonymous-block-crash.html
|
| @@ -0,0 +1,21 @@
|
| +<!DOCTYPE html>
|
| +<div style="position: absolute" contenteditable>
|
| + Text
|
| + <li id="li">Text</li>
|
| + <p>
|
| +</div>
|
| +<script>
|
| +if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.waitUntilDone();
|
| +}
|
| +
|
| +window.getSelection().collapse(document.getElementById("li"));
|
| +document.execCommand("InsertUnorderedList");
|
| +
|
| +setTimeout(function() {
|
| + document.execCommand("JustifyRight");
|
| + if (window.testRunner)
|
| + testRunner.notifyDone();
|
| +}, 0);
|
| +</script>
|
|
|