| Index: LayoutTests/editing/selection/blockquote-crash.html
|
| diff --git a/LayoutTests/editing/selection/blockquote-crash.html b/LayoutTests/editing/selection/blockquote-crash.html
|
| deleted file mode 100644
|
| index f1435f0f0b135768c8c25b0f7477a31c0942fc58..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/editing/selection/blockquote-crash.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <style>
|
| - blockquote {
|
| - color: blue;
|
| - border-left: 2px solid blue;
|
| - padding-left: 5px;
|
| - margin: 0px;
|
| - }
|
| - </style>
|
| - <script>
|
| - function test()
|
| - {
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - var qt = document.getElementById('qt');
|
| - var sel = window.getSelection();
|
| - sel.setPosition(qt, 0);
|
| - sel.modify("extend", "forward", "line");
|
| - document.execCommand("InsertNewlineInQuotedContent");
|
| -
|
| - document.write("<xmp>" + document.body.innerHTML + "</xmp>");
|
| - }
|
| - </script>
|
| - </head>
|
| - <body contenteditable onload="test()">
|
| - <div>This test should not crash</div>
|
| - <blockquote type="cite" id="qt">triple click me! then hit enter
|
| - <blockquote type="cite"><div style="min-height: 14px;"></div></blockquote>
|
| - </blockquote>
|
| - </body>
|
| -</html>
|
|
|